summaryrefslogtreecommitdiff
path: root/svx/source/accessibility
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-11-21 16:06:38 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-11-21 16:06:38 +0000
commitb1d4131a8d26663065d7844072ee9629673a86e4 (patch)
treea69a61287662aef3b329c89c5c0147658d6b8c2c /svx/source/accessibility
parent3ebf955bcb6f0fe014c135e1e83c1ac8c3f4db1c (diff)
INTEGRATION: CWS pj65 (1.10.50); FILE MERGED
2006/11/06 11:14:21 pjanik 1.10.50.1: #i71027#: Prevent warnings on Mac OS X.
Diffstat (limited to 'svx/source/accessibility')
-rw-r--r--svx/source/accessibility/DescriptionGenerator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/accessibility/DescriptionGenerator.cxx b/svx/source/accessibility/DescriptionGenerator.cxx
index defd9a995de0..0c933c3dce69 100644
--- a/svx/source/accessibility/DescriptionGenerator.cxx
+++ b/svx/source/accessibility/DescriptionGenerator.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: DescriptionGenerator.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: obo $ $Date: 2006-10-12 12:01:12 $
+ * last change: $Author: vg $ $Date: 2006-11-21 17:06:38 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -371,7 +371,7 @@ void DescriptionGenerator::AddInteger (const OUString& sPropertyName,
if (mxSet.is())
{
uno::Any aValue = mxSet->getPropertyValue (sPropertyName);
- long nValue;
+ long nValue = 0;
aValue >>= nValue;
msDescription.append (nValue);
}