summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-11-07 21:43:57 +0000
committerDarin Adler <darin@src.gnome.org>2001-11-07 21:43:57 +0000
commitf6cff97ccdafe8b12baca42a49fbd55f17f8bbca (patch)
treee9f829093703f5da912954efcda9aa60da980438 /test
parent0b9a7df897443a3aac3fa84a79e87464bc713c77 (diff)
downloadnautilus-f6cff97ccdafe8b12baca42a49fbd55f17f8bbca.tar.gz
Switch to glib's gettext.
* acconfig.h: * configure.in: Switch to glib's gettext. * components/help/converters/*: Remove, since these were moved to libgnome. * Many files: Get rid of incorrect uses of many locale-specific functions like g_strcasecmp and isspace.
Diffstat (limited to 'test')
-rw-r--r--test/test-nautilus-mime-actions-set.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-nautilus-mime-actions-set.c b/test/test-nautilus-mime-actions-set.c
index 1fa4d7931..f3dee2577 100644
--- a/test/test-nautilus-mime-actions-set.c
+++ b/test/test-nautilus-mime-actions-set.c
@@ -50,9 +50,9 @@ usage (const char *name)
static GnomeVFSMimeActionType
str_to_action_type (const char *str)
{
- if (g_strcasecmp (str, "component") == 0) {
+ if (g_ascii_strcasecmp (str, "component") == 0) {
return GNOME_VFS_MIME_ACTION_TYPE_COMPONENT;
- } else if (g_strcasecmp (str, "application") == 0) {
+ } else if (g_ascii_strcasecmp (str, "application") == 0) {
return GNOME_VFS_MIME_ACTION_TYPE_APPLICATION;
} else {
return GNOME_VFS_MIME_ACTION_TYPE_NONE;