diff options
author | Ricardo Montania <ricardo@linuxafundo.com.br> | 2013-02-25 15:36:57 -0300 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2013-02-26 10:38:09 +0000 |
commit | 0db25d61bc3c780be4baa00916696ca5976dea95 (patch) | |
tree | fe48c97e288422b3f1824059a74d94d1bb240921 /svx | |
parent | 3252c5d4980016246417d0253749f37f1ed87a80 (diff) |
String::CreateFromAscii removal
Change-Id: I86a33ef14b2bcdea1655db410f36d799689a1377
Reviewed-on: https://gerrit.libreoffice.org/2402
Reviewed-by: Michael Meeks <michael.meeks@suse.com>
Tested-by: Michael Meeks <michael.meeks@suse.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/svxruler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/dialog/svxruler.cxx b/svx/source/dialog/svxruler.cxx index e9b3add4c949..117642eb3aad 100644 --- a/svx/source/dialog/svxruler.cxx +++ b/svx/source/dialog/svxruler.cxx @@ -166,7 +166,7 @@ void RulerDebugWindow::AddDebugText(const sal_Char* pDescription, const Stri pParent = pParent->GetParent(); pDebugWindow = new RulerDebugWindow(pParent); } - String sContent(String::CreateFromAscii(pDescription)); + OUString sContent( OUString::createFromAscii(pDescription) ); sContent += rText; sal_uInt16 nPos = pDebugWindow->GetLBox().InsertEntry(sContent); pDebugWindow->GetLBox().SelectEntryPos(nPos); |