diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-04-13 08:28:50 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-04-13 08:28:50 +0000 |
commit | 5c79efe98fd850127ff5add024ee74f249cf9bcb (patch) | |
tree | e11d6249d3a216c0d628db7af6aa3ac1f366ca1c /xmloff | |
parent | ff5ae4325bbe0c533df9875e145af01b64b43fa1 (diff) |
INTEGRATION: CWS visibility03 (1.77.64); FILE MERGED
2005/03/02 16:02:34 mhu 1.77.64.1: #i40092# Fixed string ctor (char literal) usage.
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/SchXMLExport.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx index b7531b4a6445..8eff279784d1 100644 --- a/xmloff/source/chart/SchXMLExport.cxx +++ b/xmloff/source/chart/SchXMLExport.cxx @@ -2,9 +2,9 @@ * * $RCSfile: SchXMLExport.cxx,v $ * - * $Revision: 1.77 $ + * $Revision: 1.78 $ * - * last change: $Author: rt $ $Date: 2005-01-11 14:26:41 $ + * last change: $Author: obo $ $Date: 2005-04-13 09:28:50 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -261,13 +261,13 @@ SchXMLExportHelper::SchXMLExportHelper( XML_STYLE_FAMILY_TEXT_PARAGRAPH, GetXMLToken( XML_PARAGRAPH ), mxExpPropMapper.get(), - rtl::OUString( sal_Unicode( 'P' ))); + String( 'P' )); // register text family also for shapes mrAutoStylePool.AddFamily( XML_STYLE_FAMILY_TEXT_TEXT, GetXMLToken( XML_TEXT ), mxExpPropMapper.get(), - rtl::OUString( sal_Unicode( 'T' ))); + String( 'T' )); } SchXMLExportHelper::~SchXMLExportHelper() {} |