summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:09:03 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:09:03 +0000
commitb52c2e3bc17d2edf24d39426941302bcc4244d21 (patch)
tree77c7a1de50ebf310edf6236b9cc118c677304516 /framework
parente7f9d50d892e453f32104c8d6900180482ce619d (diff)
INTEGRATION: CWS warningfixes03_SRC680 (1.52.6); FILE MERGED
2006/08/18 15:01:50 mhu 1.52.6.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'framework')
-rw-r--r--framework/source/layoutmanager/layoutmanager.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/framework/source/layoutmanager/layoutmanager.cxx b/framework/source/layoutmanager/layoutmanager.cxx
index ff9dca3b602c..a2d03914b732 100644
--- a/framework/source/layoutmanager/layoutmanager.cxx
+++ b/framework/source/layoutmanager/layoutmanager.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: layoutmanager.cxx,v $
*
- * $Revision: 1.52 $
+ * $Revision: 1.53 $
*
- * last change: $Author: ihi $ $Date: 2006-08-04 11:07:54 $
+ * last change: $Author: ihi $ $Date: 2006-08-29 11:09:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1465,7 +1465,7 @@ sal_Bool LayoutManager::implts_readWindowStateData( const rtl::OUString& aName,
aWriteLock2.unlock();
css::uno::Any aValue;
- sal_Bool bValue;
+ sal_Bool bValue = sal_Bool();
if ( pGlobalSettings->GetStateInfo( GlobalSettings::UIELEMENT_TYPE_TOOLBAR,
GlobalSettings::STATEINFO_LOCKED,
aValue ))
@@ -7176,14 +7176,14 @@ void SAL_CALL LayoutManager::setFastPropertyValue_NoBroadcast( sal_Int32
}
case LAYOUTMANAGER_PROPHANDLE_AUTOMATICTOOLBARS:
{
- sal_Bool bValue;
+ sal_Bool bValue = sal_Bool();
if ( aValue >>= bValue )
m_bAutomaticToolbars = bValue;
break;
}
case LAYOUTMANAGER_PROPHANDLE_REFRESHVISIBILITY:
{
- sal_Bool bValue;
+ sal_Bool bValue = sal_Bool();
if (( aValue >>= bValue ) && bValue )
implts_refreshContextToolbarsVisibility();
break;