diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-14 21:11:44 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-14 21:28:09 +0100 |
commit | 987454711845a883f7fe232e16c1aa02c2de29b5 (patch) | |
tree | 2769aec757d041303778eeb9ea55c61d95b7567b /framework/source | |
parent | 7d0db7f0ee7c478cc58669121f517dfdf54eeaee (diff) |
bool improvements
Change-Id: Ice9f38b615b325bce6c15fefe9fbb3f528d36b1e
Diffstat (limited to 'framework/source')
-rw-r--r-- | framework/source/helper/tagwindowasmodified.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/helper/tagwindowasmodified.cxx b/framework/source/helper/tagwindowasmodified.cxx index 12090d2cb8aa..758092b016b7 100644 --- a/framework/source/helper/tagwindowasmodified.cxx +++ b/framework/source/helper/tagwindowasmodified.cxx @@ -112,7 +112,7 @@ void SAL_CALL TagWindowAsModified::modified(const css::lang::EventObject& aEvent if (bModified) pWindow->SetExtendedStyle(WB_EXT_DOCMODIFIED); else - pWindow->SetExtendedStyle( ! WB_EXT_DOCMODIFIED); + pWindow->SetExtendedStyle(0); // <- SYNCHRONIZED } |