summaryrefslogtreecommitdiff
path: root/sfx2/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-05-21 17:03:14 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-05-22 11:34:40 +0100
commit851ecc635c25aecb623a54c8b22583ce3e6adb26 (patch)
tree8fbb1d86d594496e13ddc03a9cc89c3e05bff077 /sfx2/source
parentcbd8e0fef6968244861b76a3aff212bc39746aa2 (diff)
avoid static OUStrings here
Change-Id: Idd53eeaccc7d99b35ce16e30ee6d531e0cf6c34c (cherry picked from commit 63fca6b8040f08f815378cd933e7cb66eee40346)
Diffstat (limited to 'sfx2/source')
-rw-r--r--sfx2/source/sidebar/SidebarController.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx
index 4447bedef66c..af0a54771aa0 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -66,7 +66,7 @@ using ::rtl::OUString;
namespace
{
- const static OUString gsReadOnlyCommandName (A2S(".uno:EditDoc"));
+ const static char gsReadOnlyCommandName[] = ".uno:EditDoc";
const static sal_Int32 gnMaximumSidebarWidth (400);
const static sal_Int32 gnWidthCloseThreshold (70);
const static sal_Int32 gnWidthOpenThreshold (40);
@@ -88,7 +88,7 @@ namespace {
/** When in doubt, show this deck.
*/
- static const ::rtl::OUString gsDefaultDeckId(A2S("PropertyDeck"));
+ static const char gsDefaultDeckId[] = "PropertyDeck";
}