summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorStephan Bergmann <sb@openoffice.org>2002-07-04 12:33:07 +0000
committerStephan Bergmann <sb@openoffice.org>2002-07-04 12:33:07 +0000
commit872f940551a061b04807a0e31d812c4264627121 (patch)
treea3b15802ecc99526dfc67a95dd51aa4ca832030b /basctl
parent990bc96abe21e180c5a6ff96cdf768c13e0f5d7a (diff)
#99517# Fixed ObjectCatalogToolBox_Impl::DataChanged.
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/objdlg.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/basctl/source/basicide/objdlg.cxx b/basctl/source/basicide/objdlg.cxx
index 309adb10aa90..72e9aa578d75 100644
--- a/basctl/source/basicide/objdlg.cxx
+++ b/basctl/source/basicide/objdlg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: objdlg.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: sb $ $Date: 2002-07-03 15:53:23 $
+ * last change: $Author: sb $ $Date: 2002-07-04 13:33:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -439,9 +439,9 @@ ObjectCatalogToolBox_Impl::ObjectCatalogToolBox_Impl(
void ObjectCatalogToolBox_Impl::DataChanged(DataChangedEvent const & rDCEvt)
{
ToolBox::DataChanged(rDCEvt);
- if (rDCEvt.GetType() == DATACHANGED_SETTINGS
- || (rDCEvt.GetType() == DATACHANGED_DISPLAY
- && (rDCEvt.GetFlags() & SETTINGS_STYLE) != 0))
+ if ((rDCEvt.GetType() == DATACHANGED_SETTINGS
+ || rDCEvt.GetType() == DATACHANGED_DISPLAY)
+ && (rDCEvt.GetFlags() & SETTINGS_STYLE) != 0)
setImages();
}