summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-05-29 09:01:32 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-05-29 09:01:32 +0200
commitb6ce391171e417199d33ae085d2f0768a3e952b3 (patch)
treef2c2c5bf65ba3c0be554431f65548be6583521a1 /shell
parent85d89558a425c04917b396344f89c0f6fb41561e (diff)
-Werror=deprecated-declarations
g_strcasecmp -> g_ascii_strcasecmp, hopefully the latter is already available in oldest relevant glib. Change-Id: Iac47ebd511672d4ca08d4dc998a536939d4a98c3
Diffstat (limited to 'shell')
-rw-r--r--shell/source/backends/gconfbe/gconfaccess.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/backends/gconfbe/gconfaccess.cxx b/shell/source/backends/gconfbe/gconfaccess.cxx
index 9771b5d82824..8b1782414d49 100644
--- a/shell/source/backends/gconfbe/gconfaccess.cxx
+++ b/shell/source/backends/gconfbe/gconfaccess.cxx
@@ -401,7 +401,7 @@ sal_Bool SAL_CALL isDependencySatisfied( GConfClient* pClient, const Configurati
if ( pGconfValue != NULL )
{
- bool bOk = g_strcasecmp( "manual", gconf_value_get_string( pGconfValue ) ) == 0;
+ bool bOk = g_ascii_strcasecmp( "manual", gconf_value_get_string( pGconfValue ) ) == 0;
gconf_value_free( pGconfValue );
if (bOk) return sal_True;
}