Author: orw
Date: Fri Nov 15 08:06:44 2013
New Revision: 1542193

URL: http://svn.apache.org/r1542193
Log:
fix build breaker on non-Windows platforms


Modified:
    openoffice/trunk/main/vcl/source/app/svapp.cxx

Modified: openoffice/trunk/main/vcl/source/app/svapp.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/source/app/svapp.cxx?rev=1542193&r1=1542192&r2=1542193&view=diff
==============================================================================
--- openoffice/trunk/main/vcl/source/app/svapp.cxx (original)
+++ openoffice/trunk/main/vcl/source/app/svapp.cxx Fri Nov 15 08:06:44 2013
@@ -2140,8 +2140,8 @@ bool Application::EnableAccessInterface(
 #ifdef WNT
        return WNTEnableAccessInterface(bEnable);
 #else 
-    bEnable = TRUE; // avoid compiler warning
-    return TRUE;
+    bEnable = true; // avoid compiler warning
+    return true;
 #endif 
 }
 bool Application::IsEnableAccessInterface()


Reply via email to