diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:10:16 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:10:16 +0000 |
commit | 1cce4712ec8cb2b73b9240c354ab39012ee48c09 (patch) | |
tree | aabdb41444c2db154ddd110e2d29568451ee70a3 | |
parent | ae173b93f08653c517b2388891b9d19067c02983 (diff) |
INTEGRATION: CWS warningfixes03_SRC680 (1.30.18); FILE MERGED
2006/08/18 15:01:51 mhu 1.30.18.1: #i68745# Fixed GCC 4.0.x warning(s).
-rw-r--r-- | framework/source/uielement/toolbarmanager.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/framework/source/uielement/toolbarmanager.cxx b/framework/source/uielement/toolbarmanager.cxx index 1d499f321b53..f79285f968c8 100644 --- a/framework/source/uielement/toolbarmanager.cxx +++ b/framework/source/uielement/toolbarmanager.cxx @@ -4,9 +4,9 @@ * * $RCSfile: toolbarmanager.cxx,v $ * - * $Revision: 1.30 $ + * $Revision: 1.31 $ * - * last change: $Author: kz $ $Date: 2006-07-19 13:40:46 $ + * last change: $Author: ihi $ $Date: 2006-08-29 11:10:16 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -725,7 +725,7 @@ void SAL_CALL ToolBarManager::elementInserted( const ::com::sun::star::ui::Confi return; Reference< XNameAccess > xNameAccess; - sal_Int16 nImageType; + sal_Int16 nImageType = sal_Int16(); sal_Int16 nCurrentImageType = getImageTypeFromBools( SvtMiscOptions().AreCurrentSymbolsLarge(), m_bIsHiContrast ); @@ -775,7 +775,7 @@ void SAL_CALL ToolBarManager::elementRemoved( const ::com::sun::star::ui::Config return; Reference< XNameAccess > xNameAccess; - sal_Int16 nImageType; + sal_Int16 nImageType = sal_Int16(); sal_Int16 nCurrentImageType = getImageTypeFromBools( SvtMiscOptions().AreCurrentSymbolsLarge(), m_bIsHiContrast ); @@ -828,7 +828,7 @@ void SAL_CALL ToolBarManager::elementReplaced( const ::com::sun::star::ui::Confi return; Reference< XNameAccess > xNameAccess; - sal_Int16 nImageType; + sal_Int16 nImageType = sal_Int16(); sal_Int16 nCurrentImageType = getImageTypeFromBools( SvtMiscOptions().AreCurrentSymbolsLarge(), m_bIsHiContrast ); |