diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:35:12 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:35:12 +0000 |
commit | d8824f0f6935b79341577ab37d872ff68b461e92 (patch) | |
tree | ad2d4d9b4127720a9b5b0981a9b7b1b3dd2e54b9 /xmloff/source/meta | |
parent | e7b9bf275e61a620105919b6c1e6a4be08779669 (diff) |
INTEGRATION: CWS pj65 (1.17.28); FILE MERGED
2006/11/06 10:11:17 pjanik 1.17.28.2: RESYNC: (1.17-1.18); FILE MERGED
2006/10/31 14:03:15 pjanik 1.17.28.1: #i71027#: prevent warnings on Mac OS X with gcc 4.0.1.
Diffstat (limited to 'xmloff/source/meta')
-rw-r--r-- | xmloff/source/meta/xmlmetae.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/meta/xmlmetae.cxx b/xmloff/source/meta/xmlmetae.cxx index 11e9b93ca19a..600636637007 100644 --- a/xmloff/source/meta/xmlmetae.cxx +++ b/xmloff/source/meta/xmlmetae.cxx @@ -4,9 +4,9 @@ * * $RCSfile: xmlmetae.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: vg $ $Date: 2006-11-01 14:51:15 $ + * last change: $Author: vg $ $Date: 2006-11-21 17:35:12 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -426,7 +426,7 @@ void SfxXMLMetaExport::Export() // editing cycles aPropVal = xInfoProp->getPropertyValue( ::rtl::OUString::createFromAscii(PROP_EDITINGCYCLES) ); - sal_Int32 nCycles; + sal_Int32 nCycles = 0; if ( aPropVal >>= nCycles ) { sValue = rtl::OUString::valueOf( nCycles ); @@ -441,7 +441,7 @@ void SfxXMLMetaExport::Export() // property is a int32 with the Time::GetTime value aPropVal = xInfoProp->getPropertyValue( ::rtl::OUString::createFromAscii(PROP_EDITINGDURATION) ); - sal_Int32 nDurVal; + sal_Int32 nDurVal = 0; if ( aPropVal >>= nDurVal ) { Time aDurTime( nDurVal ); @@ -494,7 +494,7 @@ void SfxXMLMetaExport::Export() aPropVal = xInfoProp->getPropertyValue( ::rtl::OUString::createFromAscii(PROP_RELOADSECS) ); - sal_Int32 nSecs; + sal_Int32 nSecs = 0; if ( aPropVal >>= nSecs ) { Time aTime; |