diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-05-29 09:01:32 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-05-29 09:01:32 +0200 |
commit | b6ce391171e417199d33ae085d2f0768a3e952b3 (patch) | |
tree | f2c2c5bf65ba3c0be554431f65548be6583521a1 /shell/source | |
parent | 85d89558a425c04917b396344f89c0f6fb41561e (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/source')
-rw-r--r-- | shell/source/backends/gconfbe/gconfaccess.cxx | 2 |
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; } |