-Werror=deprecated-declarations
g_strcasecmp -> g_ascii_strcasecmp, hopefully the latter is already
available in oldest relevant glib.
Change-Id: Iac47ebd511672d4ca08d4dc998a536939d4a98c3
diff --git a/shell/source/backends/gconfbe/gconfaccess.cxx b/shell/source/backends/gconfbe/gconfaccess.cxx
index 9771b5d..8b17824 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;
}