summaryrefslogtreecommitdiffstats
path: root/sd/workben
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-15 11:05:19 +0200
committerNoel Grandin <noel@peralex.com>2013-11-19 10:29:31 +0200
commit610b2b94b33b0fc2d79cd515f9e293ca1c2610e8 (patch)
tree6eab2639cb8104ca54daa3f7a2ebd83ef1566cf0 /sd/workben
parentremove most use of RTL_CONSTASCII_USTRINGPARAM macro (diff)
downloadcore-610b2b94b33b0fc2d79cd515f9e293ca1c2610e8.tar.gz
core-610b2b94b33b0fc2d79cd515f9e293ca1c2610e8.zip
remove unnecessary use of OUString constructor when assigning
change code like aStr = OUString("xxxx"); to aStr = "xxxx"; Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4
Diffstat (limited to 'sd/workben')
-rw-r--r--sd/workben/custompanel/ctp_panel.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/workben/custompanel/ctp_panel.cxx b/sd/workben/custompanel/ctp_panel.cxx
index ab855a1564e1..6941e33ab45b 100644
--- a/sd/workben/custompanel/ctp_panel.cxx
+++ b/sd/workben/custompanel/ctp_panel.cxx
@@ -86,7 +86,7 @@ namespace sd { namespace colortoolpanel
WindowDescriptor aWindow;
aWindow.Type = WindowClass_SIMPLE;
- aWindow.WindowServiceName = OUString( "window" );
+ aWindow.WindowServiceName = "window";
aWindow.Parent = i_rParentWindow;
aWindow.WindowAttributes = WindowAttribute::BORDER;