diff options
author | Jean-Noël Rouvignac <jn.rouvignac@gmail.com> | 2013-03-02 15:40:14 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-07 19:50:37 +0000 |
commit | 3bc29af446fd1d9bd267ade1b1a5fca725ca8166 (patch) | |
tree | 2bde3b590111a78b5020f419f9f8471029f12fdc /tools/source | |
parent | e6288a5d889da7db5bf23174f85c29ccfcaa44d5 (diff) |
fdo#38838 Replaced some use of (Uni)String with OUString.
Change-Id: Iad623c9300919fbae34279268a5a720f978c6434
Reviewed-on: https://gerrit.libreoffice.org/2514
Reviewed-by: Joren De Cuyper <joren.libreoffice@telenet.be>
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/rc/resmgr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/rc/resmgr.cxx b/tools/source/rc/resmgr.cxx index 4fe8e82f13ed..e8c9db7c67ea 100644 --- a/tools/source/rc/resmgr.cxx +++ b/tools/source/rc/resmgr.cxx @@ -1627,7 +1627,7 @@ OUString ResMgr::ReadStringWithoutHook() if( (rTop.Flags & RC_NOTFOUND) ) { #if OSL_DEBUG_LEVEL > 0 - aRet = OUString("<resource not found>"); + aRet = "<resource not found>"; #endif } else |