summaryrefslogtreecommitdiff
path: root/vcl/source/app
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-07-02 16:02:38 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-07-03 21:24:35 +0100
commitbccf34c19ae022b67565e212fa4ec0d5213947de (patch)
tree73c2d2e29ad8d15999cbfb2ff554efa1e502a35e /vcl/source/app
parent285289275d1cf1769080a208b55be984cd269e1e (diff)
ditch String::CreateFromAscii
Change-Id: I2b482bd323ac510629c5ee31868010b7cd6ce691
Diffstat (limited to 'vcl/source/app')
-rw-r--r--vcl/source/app/dbggui.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/dbggui.cxx b/vcl/source/app/dbggui.cxx
index fcf5a4c6e4ae..5603d4cefa34 100644
--- a/vcl/source/app/dbggui.cxx
+++ b/vcl/source/app/dbggui.cxx
@@ -584,7 +584,7 @@ long DbgWindow::PreNotify( NotifyEvent& rNEvt )
if ( rCommand.GetCommand() == COMMAND_CONTEXTMENU )
{
PopupMenu aMenu;
- aMenu.InsertItem( 1, String::CreateFromAscii( "copy to clipboard" ) );
+ aMenu.InsertItem( 1, rtl::OUString("copy to clipboard") );
Point aPos;
if ( rCommand.IsMouseEvent() )