You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by yd...@apache.org on 2014/02/15 13:26:49 UTC

svn commit: r1568630 - /openoffice/trunk/main/vcl/source/app/svapp.cxx

Author: ydario
Date: Sat Feb 15 12:26:49 2014
New Revision: 1568630

URL: http://svn.apache.org/r1568630
Log:
#i107914# also OS/2 is a non-Windows platform, fix build break.

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=1568630&r1=1568629&r2=1568630&view=diff
==============================================================================
--- openoffice/trunk/main/vcl/source/app/svapp.cxx (original)
+++ openoffice/trunk/main/vcl/source/app/svapp.cxx Sat Feb 15 12:26:49 2014
@@ -2060,8 +2060,8 @@ sal_Bool InitAccessBridge( sal_Bool bSho
 {
     sal_Bool bRet = true;
 
-// Disable Java bridge on UNIX
-#if defined UNX
+// Disable Java bridge on UNIX and OS/2
+#ifndef WNT
     (void) bShowCancel; // unsued
     (void) rCancelled; // unused
 #else