summaryrefslogtreecommitdiff
path: root/sw/source/ui/app
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-31 17:16:50 +0200
committerNoel Grandin <noel@peralex.com>2013-11-08 08:44:33 +0200
commita5536d9a0eac922d18f9008122034ca943d50148 (patch)
tree7144cf59587b5835f8bf2f353739836b4dd49956 /sw/source/ui/app
parent3cc85b071fdcf75adf8bcb3d59984940395c81e1 (diff)
remove unnecessary use of OUString constructor in SW module
Change-Id: I015959dce567e5579ebb5c775fb57ae14e1cd3b1
Diffstat (limited to 'sw/source/ui/app')
-rw-r--r--sw/source/ui/app/docsh2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/app/docsh2.cxx b/sw/source/ui/app/docsh2.cxx
index 1afff5892a25..05bbbafb7573 100644
--- a/sw/source/ui/app/docsh2.cxx
+++ b/sw/source/ui/app/docsh2.cxx
@@ -725,7 +725,7 @@ void SwDocShell::Execute(SfxRequest& rReq)
aLockBytes.ReadAt( 0, aSeq.getArray(), nLen, &nRead );
uno::Sequence< beans::PropertyValue > aArgs(1);
- aArgs[0].Name = OUString("RtfOutline");
+ aArgs[0].Name = "RtfOutline";
aArgs[0].Value <<= aSeq;
xHelper->executeDispatch( xProv, aCmd, OUString(), 0, aArgs );
}
@@ -792,7 +792,7 @@ void SwDocShell::Execute(SfxRequest& rReq)
aLockBytes.ReadAt( 0, aSeq.getArray(), nLen, &nRead );
uno::Sequence< beans::PropertyValue > aArgs(1);
- aArgs[0].Name = OUString("RtfOutline");
+ aArgs[0].Name = "RtfOutline";
aArgs[0].Value <<= aSeq;
xHelper->executeDispatch( xProv, aCmd, OUString(), 0, aArgs );
}