diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-05-21 17:03:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-05-21 17:03:14 +0100 |
commit | 63fca6b8040f08f815378cd933e7cb66eee40346 (patch) | |
tree | e36b71a7cb6193fef732c2ec79f44af51990e20b /sfx2 | |
parent | adb2d846e0912918708f2242997665dae5ed7478 (diff) |
avoid static OUStrings here
Change-Id: Idd53eeaccc7d99b35ce16e30ee6d531e0cf6c34c
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/sidebar/SidebarController.cxx | 4 |
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"; } |