summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:00:20 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:00:20 +0000
commitb0119c8520a18d6fe0030e8b09416157d6bd4deb (patch)
tree9b91565a94a0bfad7ef1d40e731d78e1ff7554fa /xmloff
parentf348b1ba9c1b1562248166c053e6a2c0872c373c (diff)
INTEGRATION: CWS warningfixes03_SRC680 (1.17.32); FILE MERGED
2006/08/18 14:16:23 mhu 1.17.32.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/PageMasterExportPropMapper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/style/PageMasterExportPropMapper.cxx b/xmloff/source/style/PageMasterExportPropMapper.cxx
index e1907d423aa3..12e542af047c 100644
--- a/xmloff/source/style/PageMasterExportPropMapper.cxx
+++ b/xmloff/source/style/PageMasterExportPropMapper.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: PageMasterExportPropMapper.cxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: hr $ $Date: 2006-06-19 18:26:02 $
+ * last change: $Author: ihi $ $Date: 2006-08-29 11:00:20 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -91,7 +91,7 @@ inline void lcl_RemoveState( XMLPropertyState* pState )
void lcl_RemoveStateIfZero16( XMLPropertyState* pState )
{
- sal_Int16 nValue;
+ sal_Int16 nValue = sal_Int16();
if( (pState->maValue >>= nValue) && !nValue )
lcl_RemoveState( pState );
}