summaryrefslogtreecommitdiff
path: root/sfx2/source/toolbox
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 /sfx2/source/toolbox
parent2c35fff7eca3a143d28dc75e6a73fe1101d2af77 (diff)
remove unnecessary use of OUString constructor when assigning
change code like aStr = OUString("xxxx"); to aStr = "xxxx"; Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4
Diffstat (limited to 'sfx2/source/toolbox')
-rw-r--r--sfx2/source/toolbox/tbxitem.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/toolbox/tbxitem.cxx b/sfx2/source/toolbox/tbxitem.cxx
index 8f23e4ba3153..5694db17df18 100644
--- a/sfx2/source/toolbox/tbxitem.cxx
+++ b/sfx2/source/toolbox/tbxitem.cxx
@@ -802,11 +802,11 @@ void SfxToolBoxControl::createAndPositionSubToolBar( const OUString& rSubToolBar
}
Sequence< PropertyValue > aPropSeq( 3 );
- aPropSeq[0].Name = OUString( "Frame" );
+ aPropSeq[0].Name = "Frame";
aPropSeq[0].Value <<= xFrame;
- aPropSeq[1].Name = OUString( "Persistent" );
+ aPropSeq[1].Name = "Persistent";
aPropSeq[1].Value <<= sal_False;
- aPropSeq[2].Name = OUString( "PopupMode" );
+ aPropSeq[2].Name = "PopupMode";
aPropSeq[2].Value <<= sal_True;
try