summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-04 14:00:40 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 11:21:26 +0200
commite52779d2f8722c713f72aedbf475267440d729f0 (patch)
tree0f2f15b2a7645e0b75f8057c96c90e05e1a6e7df /smoketest
parente9c4ee996d5a6bf895072613ac4e488346ee5b05 (diff)
remove unnecessary use of OUString constructor
Change-Id: Ifb220af71857ddacd64e8204fb6d3e4aad8eef71
Diffstat (limited to 'smoketest')
-rw-r--r--smoketest/smoketest.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/smoketest/smoketest.cxx b/smoketest/smoketest.cxx
index 2b24d493634d..6ada882c77f2 100644
--- a/smoketest/smoketest.cxx
+++ b/smoketest/smoketest.cxx
@@ -140,19 +140,18 @@ void Test::test() {
test::getTestArgument(
OUString("smoketest.doc"), &doc));
css::uno::Sequence< css::beans::PropertyValue > args(2);
- args[0].Name = OUString("MacroExecutionMode");
+ args[0].Name = "MacroExecutionMode";
args[0].Handle = -1;
args[0].Value <<=
com::sun::star::document::MacroExecMode::ALWAYS_EXECUTE_NO_WARN;
args[0].State = css::beans::PropertyState_DIRECT_VALUE;
- args[1].Name = OUString("ReadOnly");
+ args[1].Name = "ReadOnly";
args[1].Handle = -1;
args[1].Value <<= sal_True;
args[1].State = css::beans::PropertyState_DIRECT_VALUE;
css::util::URL url;
- url.Complete = OUString(
- "vnd.sun.star.script:Standard.Global.StartTestWithDefaultOptions?"
- "language=Basic&location=document");
+ url.Complete = "vnd.sun.star.script:Standard.Global.StartTestWithDefaultOptions?"
+ "language=Basic&location=document";
css::uno::Reference< css::frame::XDesktop2 > xDesktop = css::frame::Desktop::create(connection_.getComponentContext());