diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-04-18 16:09:02 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-04-18 16:12:19 -0300 |
commit | 8adec08d56a9ad46d3550e43b115e916c4cf783f (patch) | |
tree | 4dcd62290a2923e1884d5febc1d02bb6966c9f34 /sd/inc | |
parent | 640d0064e427de865484169a275c84d569da64e5 (diff) |
More RTL_CONSTASCII conversions
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/strmname.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sd/inc/strmname.h b/sd/inc/strmname.h index 04de56085f19..ca8aae4a3e98 100644 --- a/sd/inc/strmname.h +++ b/sd/inc/strmname.h @@ -30,24 +30,24 @@ #define _SD_STRMNAME_H // Alter Name des Dokument-Streams -static const String pStarDrawDoc( RTL_CONSTASCII_USTRINGPARAM( "StarDrawDocument" )); +static const rtl::OUString pStarDrawDoc("StarDrawDocument"); // Name des Dokument-Streams -static const String pStarDrawDoc3( RTL_CONSTASCII_USTRINGPARAM( "StarDrawDocument3" )); +static const rtl::OUString pStarDrawDoc3( "StarDrawDocument3" ); // Sonstige -static const String pSfxStyleSheets( RTL_CONSTASCII_USTRINGPARAM( "SfxStyleSheets" )); -static const String pVCItemPoolName( RTL_CONSTASCII_USTRINGPARAM( "VCPool" )); -static const String pPreviewName( RTL_CONSTASCII_USTRINGPARAM( "StarDrawTemplatePreview" )); +static const rtl::OUString pSfxStyleSheets( "SfxStyleSheets" ); +static const rtl::OUString pVCItemPoolName( "VCPool" ); +static const rtl::OUString pPreviewName( "StarDrawTemplatePreview" ); // PowerPoint-Filter -static const String pFilterPowerPoint97( RTL_CONSTASCII_USTRINGPARAM( "MS PowerPoint 97" )); -static const String pFilterPowerPoint97Template( RTL_CONSTASCII_USTRINGPARAM( "MS PowerPoint 97 Vorlage" )); -static const String pFilterPowerPoint97AutoPlay( RTL_CONSTASCII_USTRINGPARAM( "MS PowerPoint 97 AutoPlay" )); +static const rtl::OUString pFilterPowerPoint97( "MS PowerPoint 97" ); +static const rtl::OUString pFilterPowerPoint97Template( "MS PowerPoint 97 Vorlage" ); +static const rtl::OUString pFilterPowerPoint97AutoPlay( "MS PowerPoint 97 AutoPlay" ); // XML content stream -static const String pStarDrawXMLContent( RTL_CONSTASCII_USTRINGPARAM( "content.xml" )); -static const String pStarDrawOldXMLContent( RTL_CONSTASCII_USTRINGPARAM( "Content.xml" )); +static const rtl::OUString pStarDrawXMLContent( "content.xml" ); +static const rtl::OUString pStarDrawOldXMLContent( "Content.xml" ); #endif // _SD_STRMNAME_H |