summaryrefslogtreecommitdiff
path: root/uui/source/iahndl-errorhandler.cxx
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2012-12-10 23:57:10 -0200
committerLuboš Luňák <l.lunak@suse.cz>2012-12-11 12:21:44 +0000
commit3472541ab7118ad6c81cd401ce9018be7c662659 (patch)
treeeb7d8c205e9962b999ace224b265617555994cc6 /uui/source/iahndl-errorhandler.cxx
parente6ba54ceb8ac402570a126922d42db0a8341fc2b (diff)
Remove RTL_* from uui
Change-Id: I411133e81a9b548aaef2333c705c1376f45304d7 Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/1294 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
Diffstat (limited to 'uui/source/iahndl-errorhandler.cxx')
-rw-r--r--uui/source/iahndl-errorhandler.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/uui/source/iahndl-errorhandler.cxx b/uui/source/iahndl-errorhandler.cxx
index ae4f2bc80743..3827f0af7482 100644
--- a/uui/source/iahndl-errorhandler.cxx
+++ b/uui/source/iahndl-errorhandler.cxx
@@ -51,9 +51,9 @@ executeErrorDialog(
{
SolarMutexGuard aGuard;
- rtl::OUStringBuffer aText(rContext);
+ OUStringBuffer aText(rContext);
if (!rContext.isEmpty() && !rMessage.isEmpty())
- aText.appendAscii(RTL_CONSTASCII_STRINGPARAM(":\n"));
+ aText.appendAscii(":\n");
//TODO! must be internationalized
aText.append(rMessage);
@@ -99,8 +99,7 @@ executeErrorDialog(
}
catch (std::bad_alloc const &)
{
- throw uno::RuntimeException(
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("out of memory")),
+ throw uno::RuntimeException(OUString("out of memory"),
uno::Reference< uno::XInterface >());
}