GNOME Bugzilla – Bug 523704
Deprecated glib symbol used: g_strcasecmp
Last modified: 2009-06-10 22:21:16 UTC
Can be replaced by g_ascii_strcasecmp in this case. Index: gswitchit/gswitchit-applet.c =================================================================== --- gswitchit/gswitchit-applet.c (revision 10759) +++ gswitchit/gswitchit-applet.c (working copy) @@ -579,7 +579,7 @@ GSwitchItAppletSetupMenu (GSwitchItApple /* Layout preview is for XKB only */ bonobo_ui_component_set_prop (popup, "/commands/Preview", "sensitive", - g_strcasecmp ("XKB", + g_ascii_strcasecmp ("XKB", engine_backend_name) ? "0" : "1", NULL);
Thanks, committed!