summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-09-08 13:59:48 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-09-08 13:59:48 +0000
commit2a3955342c837141b13cf22ac822d137ca5f4cf3 (patch)
treeefbd51ad04d6d509a9927013f62473918bd53f24 /xmloff
parent16af7ca0ffb34c9f9db746b852c65a77d55b357c (diff)
INTEGRATION: CWS ooo20040704 (1.3.344); FILE MERGED
2004/07/03 14:44:58 waratah 1.3.344.1: #i30874# Correct uninitiliased warnings
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/XMLRectangleMembersHandler.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/xmloff/source/style/XMLRectangleMembersHandler.cxx b/xmloff/source/style/XMLRectangleMembersHandler.cxx
index 0e0d7216c2..054d670f40 100644
--- a/xmloff/source/style/XMLRectangleMembersHandler.cxx
+++ b/xmloff/source/style/XMLRectangleMembersHandler.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLRectangleMembersHandler.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dvo $ $Date: 2001-06-29 21:07:17 $
+ * last change: $Author: rt $ $Date: 2004-09-08 14:59:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -161,6 +161,9 @@ sal_Bool XMLRectangleMembersHdl::exportXML(
case XML_TYPE_RECTANGLE_HEIGHT :
nValue = aRect.Height;
break;
+ default:
+ nValue = 0; // TODO What value should this be?
+ break;
}
rtl::OUStringBuffer sBuffer;