diff options
Diffstat (limited to 'sfx2/source/sidebar/SidebarController.cxx')
-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"; } |