diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-07-19 15:34:37 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-07-19 15:34:37 +0000 |
commit | ecc80bfe58d0a7b8ff0f7a6362c6e9c8a7424e65 (patch) | |
tree | b963066f31a3d557817e499dfdc9d8f52c4c17fb /xmloff/source | |
parent | 4793d03a76a20ca59683946d40a3e7aba7e290fb (diff) |
INTEGRATION: CWS warningfixes02 (1.17.10); FILE MERGED
2006/06/30 12:00:20 sb 1.17.10.1: #i66577# Made the code compile (warning-free) on a unxlngi6.pro GCC 4.1.1 Linux box.
Diffstat (limited to 'xmloff/source')
-rw-r--r-- | xmloff/source/draw/animexp.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/draw/animexp.cxx b/xmloff/source/draw/animexp.cxx index 78984fcf2aa2..72353f07aa8c 100644 --- a/xmloff/source/draw/animexp.cxx +++ b/xmloff/source/draw/animexp.cxx @@ -4,9 +4,9 @@ * * $RCSfile: animexp.cxx,v $ * - * $Revision: 1.17 $ + * $Revision: 1.18 $ * - * last change: $Author: hr $ $Date: 2006-06-19 18:09:34 $ + * last change: $Author: kz $ $Date: 2006-07-19 16:34:37 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -382,7 +382,7 @@ void XMLAnimationsExporter::collect( Reference< XShape > xShape, SvXMLExport& rE xProps->getPropertyValue( mpImpl->msSpeed ) >>= aEffect.meSpeed; - sal_Bool bIsAnimation; + sal_Bool bIsAnimation = false; xProps->getPropertyValue( mpImpl->msIsAnimation ) >>= bIsAnimation; if( bIsAnimation ) { @@ -448,8 +448,8 @@ void XMLAnimationsExporter::collect( Reference< XShape > xShape, SvXMLExport& rE aEffect.maSoundURL = aEmptyStr; } - sal_Bool bDimPrev; - sal_Bool bDimHide; + sal_Bool bDimPrev = false; + sal_Bool bDimHide = false; xProps->getPropertyValue( mpImpl->msDimPrev ) >>= bDimPrev; xProps->getPropertyValue( mpImpl->msDimHide ) >>= bDimHide; if( bDimPrev || bDimHide ) |