summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-04-13 08:30:39 +0000
committerOliver Bolte <obo@openoffice.org>2005-04-13 08:30:39 +0000
commit73d25a78d371532d6f62b35c1df1ed9d87de3a26 (patch)
tree05d8081f2ab5da2d03e2ed2ded96378a208d094b /xmloff
parent6ad7e54f11fb10e01a16c4c8844d440fe5101700 (diff)
INTEGRATION: CWS visibility03 (1.119.42); FILE MERGED
2005/04/06 15:31:44 mhu 1.119.42.3: RESYNC: (1.120-1.121); FILE MERGED 2005/03/24 22:13:40 mhu 1.119.42.2: RESYNC: (1.119-1.120); FILE MERGED 2005/03/02 16:02:39 mhu 1.119.42.1: #i40092# Fixed string ctor (char literal) usage.
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/text/txtparae.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx
index 8b116f0b528b..d6da091b3093 100644
--- a/xmloff/source/text/txtparae.cxx
+++ b/xmloff/source/text/txtparae.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: txtparae.cxx,v $
*
- * $Revision: 1.121 $
+ * $Revision: 1.122 $
*
- * last change: $Author: vg $ $Date: 2005-03-23 12:42:15 $
+ * last change: $Author: obo $ $Date: 2005-04-13 09:30:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -951,7 +951,7 @@ XMLTextParagraphExport::XMLTextParagraphExport(
GetExport() );
OUString sFamily( GetXMLToken(XML_PARAGRAPH) );
- OUString sPrefix( 'P' );
+ OUString sPrefix( String( 'P' ) );
rAutoStylePool.AddFamily( XML_STYLE_FAMILY_TEXT_PARAGRAPH, sFamily,
xParaPropMapper, sPrefix );
@@ -959,7 +959,7 @@ XMLTextParagraphExport::XMLTextParagraphExport(
xTextPropMapper = new XMLTextExportPropertySetMapper( xPropMapper,
GetExport() );
sFamily = OUString( GetXMLToken(XML_TEXT) );
- sPrefix = OUString( 'T' );
+ sPrefix = OUString( String( 'T' ) );
rAutoStylePool.AddFamily( XML_STYLE_FAMILY_TEXT_TEXT, sFamily,
xTextPropMapper, sPrefix );