diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 12:07:55 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 13:24:31 +0100 |
commit | 891ffcb141239cb0c51b37f7cc9be0957915ec31 (patch) | |
tree | 72a3194003904bd06a50f1014da77243d48cd31a /unotools/source/config/eventcfg.cxx | |
parent | fb96dc3c8f031a79266f9921d614c334fa9e17a8 (diff) |
bool improvements
Change-Id: I2733b729fe516c0e857490369d493bb7d8fb7c77
Diffstat (limited to 'unotools/source/config/eventcfg.cxx')
-rw-r--r-- | unotools/source/config/eventcfg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/eventcfg.cxx b/unotools/source/config/eventcfg.cxx index 3fcfc8f2b846..a052613ca0ab 100644 --- a/unotools/source/config/eventcfg.cxx +++ b/unotools/source/config/eventcfg.cxx @@ -126,7 +126,7 @@ GlobalEventConfig_Impl::GlobalEventConfig_Impl() GlobalEventConfig_Impl::~GlobalEventConfig_Impl() { // We must save our current values .. if user forget it! - if( IsModified() == sal_True ) + if( IsModified() ) { Commit(); } |