[Libreoffice-commits] core.git: toolkit/source

Lionel Elie Mamane lionel at mamane.lu
Thu May 29 08:53:01 PDT 2014


 toolkit/source/awt/vclxwindows.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ef530d0a2c0f68da7011f935ff4775defc6d4651
Author: Lionel Elie Mamane <lionel at mamane.lu>
Date:   Thu May 29 08:09:57 2014 +0200

    fdo#75364 flat style and 3d style were swapped
    
    Change-Id: I929f8f63e8017727595be30f4e56f3aabeec2b1e
    Reviewed-on: https://gerrit.libreoffice.org/9549
    Reviewed-by: Lionel Elie Mamane <lionel at mamane.lu>
    Tested-by: Lionel Elie Mamane <lionel at mamane.lu>

diff --git a/toolkit/source/awt/vclxwindows.cxx b/toolkit/source/awt/vclxwindows.cxx
index cea2913..9016b04 100644
--- a/toolkit/source/awt/vclxwindows.cxx
+++ b/toolkit/source/awt/vclxwindows.cxx
@@ -178,11 +178,11 @@ namespace toolkit
         switch ( nStyle )
         {
         case FLAT:
-            aStyleSettings.SetOptions( aStyleSettings.GetOptions() & ~STYLE_OPTION_MONO );
+            aStyleSettings.SetOptions( aStyleSettings.GetOptions() | STYLE_OPTION_MONO );
             break;
         case LOOK3D:
         default:
-            aStyleSettings.SetOptions( aStyleSettings.GetOptions() | STYLE_OPTION_MONO );
+            aStyleSettings.SetOptions( aStyleSettings.GetOptions() & ~STYLE_OPTION_MONO );
         }
         aSettings.SetStyleSettings( aStyleSettings );
         _pWindow->SetSettings( aSettings );


More information about the Libreoffice-commits mailing list