summaryrefslogtreecommitdiff
path: root/svx/source/xoutdev
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-11-21 16:14:57 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-11-21 16:14:57 +0000
commit22ae8ae56383dc53184c7d71f10cfb24f356c5bc (patch)
treed009a30dff6f85511d877368a012e434eaaa7fed /svx/source/xoutdev
parent3240bbee6507f3ebe5ddcfee8ceea05e1a491795 (diff)
INTEGRATION: CWS pj65 (1.7.50); FILE MERGED
2006/11/06 11:14:31 pjanik 1.7.50.1: #i71027#: Prevent warnings on Mac OS X.
Diffstat (limited to 'svx/source/xoutdev')
-rw-r--r--svx/source/xoutdev/xattr2.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/xoutdev/xattr2.cxx b/svx/source/xoutdev/xattr2.cxx
index 371c47fab895..2d897c03485b 100644
--- a/svx/source/xoutdev/xattr2.cxx
+++ b/svx/source/xoutdev/xattr2.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xattr2.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: obo $ $Date: 2006-10-12 13:31:02 $
+ * last change: $Author: vg $ $Date: 2006-11-21 17:14:57 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -290,7 +290,7 @@ BOOL XLineJointItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nM
if(!(rVal >>= eUnoJoint))
{
// also try an int (for Basic)
- sal_Int32 nLJ;
+ sal_Int32 nLJ = 0;
if(!(rVal >>= nLJ))
return sal_False;
eUnoJoint = (::com::sun::star::drawing::LineJoint)nLJ;