summaryrefslogtreecommitdiff
path: root/svx/source/unodraw/UnoGraphicExporter.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2006-12-01 12:54:32 +0000
committerRüdiger Timm <rt@openoffice.org>2006-12-01 12:54:32 +0000
commit3f6c46c0953b1f9667ff207568446756452829f4 (patch)
tree6b0928be235e22263f94439f3807c044ccc2d873 /svx/source/unodraw/UnoGraphicExporter.cxx
parent53a3ae521ecbce33197e2433e97ab3685087c170 (diff)
INTEGRATION: CWS pj68 (1.33.8); FILE MERGED
2006/11/27 20:57:57 pjanik 1.33.8.1: #i71974#: Initialize variable to prevent warning on Mac OS X with gcc 4.0.1.
Diffstat (limited to 'svx/source/unodraw/UnoGraphicExporter.cxx')
-rw-r--r--svx/source/unodraw/UnoGraphicExporter.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/unodraw/UnoGraphicExporter.cxx b/svx/source/unodraw/UnoGraphicExporter.cxx
index b16c466757c6..01854d793be1 100644
--- a/svx/source/unodraw/UnoGraphicExporter.cxx
+++ b/svx/source/unodraw/UnoGraphicExporter.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: UnoGraphicExporter.cxx,v $
*
- * $Revision: 1.33 $
+ * $Revision: 1.34 $
*
- * last change: $Author: vg $ $Date: 2006-11-21 16:48:28 $
+ * last change: $Author: rt $ $Date: 2006-12-01 13:54:32 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -710,7 +710,7 @@ sal_Bool SAL_CALL GraphicExporter::filter( const Sequence< PropertyValue >& aDes
{
if ( !( pDataValues->Value >>= bTranslucent ) ) // SJ: TODO: The GIF Transparency is stored as int32 in
{ // configuration files, this has to be changed to boolean
- sal_Int32 nTranslucent;
+ sal_Int32 nTranslucent = 0;
if ( pDataValues->Value >>= nTranslucent )
bTranslucent = nTranslucent != 0;
}