diff options
author | Tor Lillqvist <tml@novell.com> | 2005-12-17 19:37:18 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-12-17 19:37:18 +0800 |
commit | 4ded439d958853c6e276162fb8dc6f2724477cbc (patch) | |
tree | 9422b457b9d672828c0e33a213e9d0115b760fca /a11y/e-table | |
parent | 024685adf4112076bd033ad22d9eaa5fa2e55fb3 (diff) | |
download | gsoc2013-evolution-4ded439d958853c6e276162fb8dc6f2724477cbc.tar.gz 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/e-table')
-rw-r--r-- | a11y/e-table/gal-a11y-e-cell.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |