diff options
author | Marcos Paulo de Souza <marcos.souza.org@gmail.com> | 2012-12-10 23:57:10 -0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-11 12:21:44 +0000 |
commit | 3472541ab7118ad6c81cd401ce9018be7c662659 (patch) | |
tree | eb7d8c205e9962b999ace224b265617555994cc6 /uui/source/iahndl-locking.cxx | |
parent | e6ba54ceb8ac402570a126922d42db0a8341fc2b (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-locking.cxx')
-rw-r--r-- | uui/source/iahndl-locking.cxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/uui/source/iahndl-locking.cxx b/uui/source/iahndl-locking.cxx index 57faaa11e6cd..cc392512da28 100644 --- a/uui/source/iahndl-locking.cxx +++ b/uui/source/iahndl-locking.cxx @@ -140,8 +140,7 @@ handleLockedDocumentRequest_( } 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 >()); } } @@ -178,8 +177,7 @@ handleChangedByOthersRequest_( } 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 >()); } } @@ -216,8 +214,7 @@ handleLockFileIgnoreRequest_( } 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 >()); } } |