summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLTextColumnsExport.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 17:45:26 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 17:45:26 +0000
commit19172537bbb9203cd14d22d2c9902adabd519f37 (patch)
tree4e97e1640488845171ea019ce56c763310bc85df /xmloff/source/text/XMLTextColumnsExport.cxx
parent262238f4e4d32f9fdbb5ac9c7e0f488d9540f243 (diff)
INTEGRATION: CWS warnings01 (1.7.34); FILE MERGED
2005/11/17 15:19:25 pl 1.7.34.2: #i55991# removed warnings 2005/11/03 17:47:10 cl 1.7.34.1: warning free code changes for unxlngi6
Diffstat (limited to 'xmloff/source/text/XMLTextColumnsExport.cxx')
-rw-r--r--xmloff/source/text/XMLTextColumnsExport.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/xmloff/source/text/XMLTextColumnsExport.cxx b/xmloff/source/text/XMLTextColumnsExport.cxx
index c30f10c2c94b..b3ac4ac18bfb 100644
--- a/xmloff/source/text/XMLTextColumnsExport.cxx
+++ b/xmloff/source/text/XMLTextColumnsExport.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: XMLTextColumnsExport.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 15:20:24 $
+ * last change: $Author: hr $ $Date: 2006-06-19 18:45:26 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -172,6 +172,8 @@ void XMLTextColumnsExport::exportXML( const Any& rAny )
// case VerticalAlignment_TOP: eStr = XML_TOP;
case VerticalAlignment_MIDDLE: eStr = XML_MIDDLE; break;
case VerticalAlignment_BOTTOM: eStr = XML_BOTTOM; break;
+ default:
+ break;
}
if( eStr != XML_TOKEN_INVALID)
@@ -179,7 +181,7 @@ void XMLTextColumnsExport::exportXML( const Any& rAny )
XML_VERTICAL_ALIGN, eStr );
// style:column-sep
- SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE,
+ SvXMLElementExport aElement( GetExport(), XML_NAMESPACE_STYLE,
XML_COLUMN_SEP,
sal_True, sal_True );
}
@@ -207,7 +209,7 @@ void XMLTextColumnsExport::exportXML( const Any& rAny )
sValue.makeStringAndClear() );
// style:column
- SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE, XML_COLUMN,
+ SvXMLElementExport aElement( GetExport(), XML_NAMESPACE_STYLE, XML_COLUMN,
sal_True, sal_True );
pColumns++;
}