diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-14 21:02:32 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-14 21:02:32 +0000 |
commit | f37609830b20839ce2a4c9aee0ec57435d5112a2 (patch) | |
tree | c8c26067975cdd669c7098896bdb220a762d2a72 /sd/source/ui/dlg/dlgass.cxx | |
parent | 00b523da3f4e6476d007a1bea10f3b9205d68a70 (diff) |
Misuse of RTL_CONSTASCII_STRINGPARAM instead of RTL_CONSTASCII_USTRINGPARAM
Diffstat (limited to 'sd/source/ui/dlg/dlgass.cxx')
-rw-r--r-- | sd/source/ui/dlg/dlgass.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/dlg/dlgass.cxx b/sd/source/ui/dlg/dlgass.cxx index 8d6398527207..16b62f219711 100644 --- a/sd/source/ui/dlg/dlgass.cxx +++ b/sd/source/ui/dlg/dlgass.cxx @@ -438,8 +438,8 @@ AssistentDlgImpl::AssistentDlgImpl( ::Window* pWindow, const Link& rFinishLink, String sText (GetUiTextForCommand(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(".uno:Open")))); // Remove the mnemonic and add a leading space so that icon and text // are not too close together. - sText.SearchAndReplaceAll(String(RTL_CONSTASCII_STRINGPARAM("~")),String()); - sText.Insert(String(RTL_CONSTASCII_STRINGPARAM(" ")),0); + sText.SearchAndReplaceAll(String(RTL_CONSTASCII_USTRINGPARAM("~")),String()); + sText.Insert(String(RTL_CONSTASCII_USTRINGPARAM(" ")),0); mpPage1OpenPB->SetText(sText); // Place icon left of text and both centered in the button. mpPage1OpenPB->SetModeImage( |