summaryrefslogtreecommitdiff
path: root/filter/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-14 13:13:19 +0200
committerNoel Grandin <noel@peralex.com>2013-11-19 10:29:30 +0200
commit2c35fff7eca3a143d28dc75e6a73fe1101d2af77 (patch)
treefb31b64880b06b0e2bd867aa6216ae0259c7c091 /filter/source
parentccc297097891e62489e5d281a4ea128ec6b71361 (diff)
remove most use of RTL_CONSTASCII_USTRINGPARAM macro
This is largely unnecessary when working with OUString Change-Id: I3cf4d68357a43665d01162ef4a2d5346a45da9be
Diffstat (limited to 'filter/source')
-rw-r--r--filter/source/msfilter/eschesdo.cxx2
-rw-r--r--filter/source/xsltdialog/xmlfiltertestdialog.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/msfilter/eschesdo.cxx b/filter/source/msfilter/eschesdo.cxx
index 43854c1d1d70..c97f474fc8f6 100644
--- a/filter/source/msfilter/eschesdo.cxx
+++ b/filter/source/msfilter/eschesdo.cxx
@@ -1080,7 +1080,7 @@ basegfx::B2DRange getUnrotatedGroupBoundRange(const Reference< XShape >& rxShape
if(mXPropSet.is())
{
- const Any aAny = mXPropSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("Transformation")));
+ const Any aAny = mXPropSet->getPropertyValue(OUString("Transformation"));
if(aAny.hasValue())
{
diff --git a/filter/source/xsltdialog/xmlfiltertestdialog.cxx b/filter/source/xsltdialog/xmlfiltertestdialog.cxx
index c4ce50ef9b17..359863cc9ce1 100644
--- a/filter/source/xsltdialog/xmlfiltertestdialog.cxx
+++ b/filter/source/xsltdialog/xmlfiltertestdialog.cxx
@@ -429,7 +429,7 @@ void XMLFilterTestDialog::doExport( Reference< XComponent > xComp )
Reference< XStorable > xStorable( xComp, UNO_QUERY );
if( xStorable.is() )
{
- OUString const ext(RTL_CONSTASCII_USTRINGPARAM(".xml"));
+ OUString const ext(".xml");
utl::TempFile aTempFile(OUString(), &ext);
OUString aTempFileURL( aTempFile.GetURL() );
@@ -592,7 +592,7 @@ void XMLFilterTestDialog::import( const OUString& rURL )
if( m_pCBXDisplaySource->IsChecked() )
{
- OUString const ext(RTL_CONSTASCII_USTRINGPARAM(".xml"));
+ OUString const ext(".xml");
TempFile aTempFile(OUString(), &ext);
OUString aTempFileURL( aTempFile.GetURL() );