summaryrefslogtreecommitdiffstats
path: root/xmloff
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-05-29 21:39:24 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-05-29 21:39:24 -0500
commit1a5637b8a958bc9aa22d3d5ebacc10e1a3a2bd4c (patch)
tree6e4c4b8744f0868761a12b2f2cde3b86257fb9fb /xmloff
parenttargeted string re-work (diff)
downloadcore-1a5637b8a958bc9aa22d3d5ebacc10e1a3a2bd4c.tar.gz
core-1a5637b8a958bc9aa22d3d5ebacc10e1a3a2bd4c.zip
targeted string re-work
Change-Id: If9a9889fa36bc76c9afed295568ed9a05de4587f
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/forms/layerexport.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/source/forms/layerexport.cxx b/xmloff/source/forms/layerexport.cxx
index 887389056f31..846c00cba503 100644
--- a/xmloff/source/forms/layerexport.cxx
+++ b/xmloff/source/forms/layerexport.cxx
@@ -85,7 +85,7 @@ namespace xmloff
//---------------------------------------------------------------------
const ::rtl::OUString& OFormLayerXMLExport_Impl::getControlNumberStyleNamePrefix()
{
- static const ::rtl::OUString s_sControlNumberStyleNamePrefix(RTL_CONSTASCII_USTRINGPARAM("C"));
+ static const ::rtl::OUString s_sControlNumberStyleNamePrefix("C");
return s_sControlNumberStyleNamePrefix;
}
@@ -105,7 +105,7 @@ namespace xmloff
m_rContext.GetAutoStylePool()->AddFamily(
XML_STYLE_FAMILY_CONTROL_ID, token::GetXMLToken(token::XML_PARAGRAPH),
m_xStyleExportMapper.get(),
- ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( XML_STYLE_FAMILY_CONTROL_PREFIX) )
+ ::rtl::OUString( XML_STYLE_FAMILY_CONTROL_PREFIX )
);
// add our event translation table
@@ -514,7 +514,7 @@ namespace xmloff
::rtl::OUString lcl_findFreeControlId( const MapPropertySet2Map& _rAllPagesControlIds )
{
- static const ::rtl::OUString sControlIdBase( RTL_CONSTASCII_USTRINGPARAM( "control" ) );
+ static const ::rtl::OUString sControlIdBase( "control" );
::rtl::OUString sControlId = sControlIdBase;
size_t nKnownControlCount = ::std::accumulate( _rAllPagesControlIds.begin(), _rAllPagesControlIds.end(), (size_t)0, AccumulateSize() );
@@ -569,7 +569,7 @@ namespace xmloff
if (!sReferencedBy.isEmpty())
// it's not the first _rxObject referring to the xCurrentReference
// -> separate the id
- sReferencedBy += ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(","));
+ sReferencedBy += ::rtl::OUString(",");
sReferencedBy += sCurrentId;
}
}
@@ -772,8 +772,8 @@ namespace xmloff
// create it for en-US (does not really matter, as we will specify a locale for every
// concrete language to use)
Sequence< Any > aSupplierArgs(1);
- aSupplierArgs[0] <<= Locale ( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("en")),
- ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("US")),
+ aSupplierArgs[0] <<= Locale ( ::rtl::OUString("en"),
+ ::rtl::OUString("US"),
::rtl::OUString()
);