diff options
author | Carsten Driesner <cd@openoffice.org> | 2002-12-13 06:45:00 +0000 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2002-12-13 06:45:00 +0000 |
commit | cc2c26dc77155ef2b74ee9778b8671a3c29a9966 (patch) | |
tree | a55d58cc192179247dee84df0e56496764bcb55f /svtools/source/config/menuoptions.cxx | |
parent | 7d43ef8b099b4904ad5fa9f2a104ca6e32e667bc (diff) |
#106166# Use write through for menu options to enable VCL settings
Diffstat (limited to 'svtools/source/config/menuoptions.cxx')
-rw-r--r-- | svtools/source/config/menuoptions.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/svtools/source/config/menuoptions.cxx b/svtools/source/config/menuoptions.cxx index a69a546e3d3f..77b63b2a8f67 100644 --- a/svtools/source/config/menuoptions.cxx +++ b/svtools/source/config/menuoptions.cxx @@ -2,9 +2,9 @@ * * $RCSfile: menuoptions.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: mba $ $Date: 2001-07-02 11:07:53 $ + * last change: $Author: cd $ $Date: 2002-12-13 07:45:00 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -219,6 +219,7 @@ class SvtMenuOptions_Impl : public ConfigItem SetModified(); for ( USHORT n=0; n<aList.Count(); n++ ) aList.GetObject(n)->Call( this ); + Commit(); } void SetFollowMouseState ( sal_Bool bState ) @@ -227,6 +228,7 @@ class SvtMenuOptions_Impl : public ConfigItem SetModified(); for ( USHORT n=0; n<aList.Count(); n++ ) aList.GetObject(n)->Call( this ); + Commit(); } void SetMenuIconsState ( sal_Bool bState ) @@ -235,6 +237,7 @@ class SvtMenuOptions_Impl : public ConfigItem SetModified(); for ( USHORT n=0; n<aList.Count(); n++ ) aList.GetObject(n)->Call( this ); + Commit(); } //------------------------------------------------------------------------------------------------------------- |