diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:38:53 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:38:53 +0000 |
commit | 2538b85805ebba503f11ca646acb08ed4c1d6589 (patch) | |
tree | 0ad35336420901b8576b0ed85585b3e38451baec | |
parent | 6b996611a1a51e19f8d1d00da118cf7c57754522 (diff) |
INTEGRATION: CWS pj65 (1.18.28); FILE MERGED
2006/10/31 14:04:22 pjanik 1.18.28.1: #i71027#: prevent warnings on Mac OS X with gcc 4.0.1.
-rw-r--r-- | xmloff/source/text/txtftne.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/text/txtftne.cxx b/xmloff/source/text/txtftne.cxx index a813e5ce96b5..0098d73726ca 100644 --- a/xmloff/source/text/txtftne.cxx +++ b/xmloff/source/text/txtftne.cxx @@ -4,9 +4,9 @@ * * $RCSfile: txtftne.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: obo $ $Date: 2006-09-17 11:18:02 $ + * last change: $Author: vg $ $Date: 2006-11-21 17:38:53 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -242,7 +242,7 @@ void XMLTextParagraphExport::exportTextFootnoteHelper( // export reference Id (for reference fields) Reference<XPropertySet> xPropSet(rFootnote, UNO_QUERY); Any aAny = xPropSet->getPropertyValue(sReferenceId); - sal_Int32 nNumber; + sal_Int32 nNumber = 0; aAny >>= nNumber; OUStringBuffer aBuf; aBuf.appendAscii("ftn"); |