summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/PaneShells.cxx
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-11-02 21:09:45 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-11-02 21:10:06 +0000
commit1645ea4b426767197f7842683e3dfc7a7bf09a0b (patch)
tree82c4409bf2fa6bff4842d439e5c7a26462be933a /sd/source/ui/dlg/PaneShells.cxx
parentaa3b88a93b0fb390db72d2fbcf1972349c62c14a (diff)
RTL_CONSTASCII_USTRINGPARAM macro
Diffstat (limited to 'sd/source/ui/dlg/PaneShells.cxx')
-rw-r--r--sd/source/ui/dlg/PaneShells.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/PaneShells.cxx b/sd/source/ui/dlg/PaneShells.cxx
index f5eead649139..61f8f323863c 100644
--- a/sd/source/ui/dlg/PaneShells.cxx
+++ b/sd/source/ui/dlg/PaneShells.cxx
@@ -61,7 +61,7 @@ TYPEINIT1(LeftImpressPaneShell, SfxShell);
LeftImpressPaneShell::LeftImpressPaneShell (void)
: SfxShell()
{
- SetName(rtl::OUString::createFromAscii("LeftImpressPane"));
+ SetName(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("LeftImpressPane")));
}
@@ -97,7 +97,7 @@ TYPEINIT1(LeftDrawPaneShell, SfxShell);
LeftDrawPaneShell::LeftDrawPaneShell (void)
: SfxShell()
{
- SetName(rtl::OUString::createFromAscii("LeftDrawPane"));
+ SetName(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("LeftDrawPane")));
}
@@ -130,7 +130,7 @@ TYPEINIT1( ToolPanelPaneShell, SfxShell );
ToolPanelPaneShell::ToolPanelPaneShell()
:SfxShell()
{
- SetName( ::rtl::OUString::createFromAscii( "ToolPanel" ) );
+ SetName( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "ToolPanel" )) );
}
ToolPanelPaneShell::~ToolPanelPaneShell(void)