shell/source/backends/gconfbe/gconfaccess.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b6ce391171e417199d33ae085d2f0768a3e952b3
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Tue May 29 09:01:32 2012 +0200

    -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;
             }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to