diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-04 11:55:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-11 11:21:23 +0200 |
commit | 22435a0777d6048757855f7f30b04fb8e5523fb2 (patch) | |
tree | 2a8e66dbfca50cfee05739cf799f94b00774340d /extensions/source/scanner/sane.cxx | |
parent | 957f8e02c29bc4df2f37f2a933957490cdf831f6 (diff) |
remove unnecessary use of OUString constructor in EXTENSIONS module
Change-Id: Idf73eb831f52d4d74e6fbb6ea27f59ebbfd13a8c
Diffstat (limited to 'extensions/source/scanner/sane.cxx')
-rw-r--r-- | extensions/source/scanner/sane.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/scanner/sane.cxx b/extensions/source/scanner/sane.cxx index 52bafe842473..95134df24eb3 100644 --- a/extensions/source/scanner/sane.cxx +++ b/extensions/source/scanner/sane.cxx @@ -172,7 +172,7 @@ void Sane::Init() pSaneLib = osl_loadModule( sSaneLibName.pData, SAL_LOADMODULE_LAZY ); if( ! pSaneLib ) { - sSaneLibName = OUString("libsane" SAL_DLLEXTENSION ".1" ); + sSaneLibName = "libsane" SAL_DLLEXTENSION ".1"; pSaneLib = osl_loadModule( sSaneLibName.pData, SAL_LOADMODULE_LAZY ); } // try reasonable places that might not be in the library search path |