summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:12:28 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:12:28 +0000
commit4c4f226ee3b989510a751e35365b02f8e5f50db1 (patch)
tree3f65d49295a7307d58cff8514c9f8f4ce73360b2 /svtools
parent6c155298a0279bbb23e2a2292e11919dfd539014 (diff)
INTEGRATION: CWS warningfixes03_SRC680 (1.4.90); FILE MERGED
2006/08/18 14:31:23 mhu 1.4.90.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/items1/cenumitm.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/items1/cenumitm.cxx b/svtools/source/items1/cenumitm.cxx
index 477226905259..c9a45a023850 100644
--- a/svtools/source/items1/cenumitm.cxx
+++ b/svtools/source/items1/cenumitm.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: cenumitm.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: hr $ $Date: 2006-06-19 21:14:28 $
+ * last change: $Author: ihi $ $Date: 2006-08-29 11:12:28 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -259,7 +259,7 @@ BOOL CntBoolItem::QueryValue(com::sun::star::uno::Any& rVal, BYTE) const
// virtual
BOOL CntBoolItem::PutValue(const com::sun::star::uno::Any& rVal, BYTE)
{
- sal_Bool bTheValue;
+ sal_Bool bTheValue = sal_Bool();
if (rVal >>= bTheValue)
{
m_bValue = bTheValue;