aboutsummaryrefslogtreecommitdiffstats
path: root/a11y
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-12-17 19:37:18 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-12-17 19:37:18 +0800
commit4ded439d958853c6e276162fb8dc6f2724477cbc (patch)
tree9422b457b9d672828c0e33a213e9d0115b760fca /a11y
parent024685adf4112076bd033ad22d9eaa5fa2e55fb3 (diff)
downloadgsoc2013-evolution-4ded439d958853c6e276162fb8dc6f2724477cbc.tar
gsoc2013-evolution-4ded439d958853c6e276162fb8dc6f2724477cbc.tar.gz
gsoc2013-evolution-4ded439d958853c6e276162fb8dc6f2724477cbc.tar.bz2
gsoc2013-evolution-4ded439d958853c6e276162fb8dc6f2724477cbc.tar.lz
gsoc2013-evolution-4ded439d958853c6e276162fb8dc6f2724477cbc.tar.xz
gsoc2013-evolution-4ded439d958853c6e276162fb8dc6f2724477cbc.tar.zst
gsoc2013-evolution-4ded439d958853c6e276162fb8dc6f2724477cbc.zip
Use g_ascii_strcasecmp() instead of g_strcasecmp() for well-definedness.
2005-12-17 Tor Lillqvist <tml@novell.com> * e-table/gal-a11y-e-cell.c (gal_a11y_e_cell_remove_action_by_name): Use g_ascii_strcasecmp() instead of g_strcasecmp() for well-definedness. svn path=/trunk/; revision=30795
Diffstat (limited to 'a11y')
-rw-r--r--a11y/ChangeLog6
-rw-r--r--a11y/e-table/gal-a11y-e-cell.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/a11y/ChangeLog b/a11y/ChangeLog
index 66904cd4ee..5538ff81a0 100644
--- a/a11y/ChangeLog
+++ b/a11y/ChangeLog
@@ -1,3 +1,9 @@
+2005-12-17 Tor Lillqvist <tml@novell.com>
+
+ * e-table/gal-a11y-e-cell.c
+ (gal_a11y_e_cell_remove_action_by_name): Use g_ascii_strcasecmp()
+ instead of g_strcasecmp() for well-definedness.
+
2005-09-27 Harry Lu <harry.lu@sun.com>
Fix for #316351
diff --git a/a11y/e-table/gal-a11y-e-cell.c b/a11y/e-table/gal-a11y-e-cell.c
index 5957938978..d6b69a47f3 100644
--- a/a11y/e-table/gal-a11y-e-cell.c
+++ b/a11y/e-table/gal-a11y-e-cell.c
@@ -337,7 +337,7 @@ gal_a11y_e_cell_remove_action_by_name (GalA11yECell *cell,
g_return_val_if_fail (GAL_A11Y_IS_E_CELL (cell), FALSE);
for (list_node = cell->action_list; list_node && !action_found;
list_node = list_node->next) {
- if (!g_strcasecmp (((ActionInfo *)(list_node->data))->name, action_name)) {
+ if (!g_ascii_strcasecmp (((ActionInfo *)(list_node->data))->name, action_name)) {
action_found = TRUE;
break;
}