summaryrefslogtreecommitdiff
path: root/framework/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-14 21:11:44 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-14 21:28:09 +0100
commit987454711845a883f7fe232e16c1aa02c2de29b5 (patch)
tree2769aec757d041303778eeb9ea55c61d95b7567b /framework/source
parent7d0db7f0ee7c478cc58669121f517dfdf54eeaee (diff)
bool improvements
Change-Id: Ice9f38b615b325bce6c15fefe9fbb3f528d36b1e
Diffstat (limited to 'framework/source')
-rw-r--r--framework/source/helper/tagwindowasmodified.cxx2
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
}