diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 12:20:40 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 12:20:40 +0000 |
commit | aac6baefbc063c900828feec832c06ca66cbecd6 (patch) | |
tree | 623f14464799f67f5d39e9496adf7d71b270d8ad | |
parent | 573801d294a474ed05991e25e866d120787b0938 (diff) |
INTEGRATION: CWS sb59 (1.3.488); FILE MERGED
2006/08/28 12:58:08 sb 1.3.488.2: #i67487# Made code warning-free (wntmsci10).
2006/08/03 13:51:58 cl 1.3.488.1: removed compiler warnings
-rw-r--r-- | svx/source/tbxctrls/formatpaintbrushctrl.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/tbxctrls/formatpaintbrushctrl.cxx b/svx/source/tbxctrls/formatpaintbrushctrl.cxx index 69fc0fc38a5a..e461da539271 100644 --- a/svx/source/tbxctrls/formatpaintbrushctrl.cxx +++ b/svx/source/tbxctrls/formatpaintbrushctrl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: formatpaintbrushctrl.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: obo $ $Date: 2006-09-17 06:05:11 $ + * last change: $Author: obo $ $Date: 2006-10-12 13:20:40 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -116,7 +116,7 @@ IMPL_LINK(FormatPaintBrushToolBoxControl, WaitDoubleClickHdl, void*, EMPTYARG ) } // ----------------------------------------------------------------------- -void FormatPaintBrushToolBoxControl::Select( BOOL bMod1 ) +void FormatPaintBrushToolBoxControl::Select( BOOL ) { } @@ -124,7 +124,7 @@ void FormatPaintBrushToolBoxControl::Select( BOOL bMod1 ) void FormatPaintBrushToolBoxControl::StateChanged( USHORT nSID, SfxItemState eState, const SfxPoolItem* pState ) { - if( eState & SFX_ITEM_SET == 0 ) + if( ( eState & SFX_ITEM_SET ) == 0 ) m_bPersistentCopy = false; SfxToolBoxControl::StateChanged( nSID, eState, pState ); } |