diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-05 15:06:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-12-05 15:07:17 +0200 |
commit | 86b44e8e78716fbfc1783d692debcbb201fb9bd4 (patch) | |
tree | cae64df7bfb656962c16c7137bb98a8801419084 /svx | |
parent | 25c50ff9fb0f277da9bc164d8244a774ef1ebba4 (diff) |
fdo#38835 strip out OUString globals
Change-Id: I8bc386ffa88e31988bdc778a845403bec0772799
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/form/dbtoolsclient.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/svx/source/form/dbtoolsclient.cxx b/svx/source/form/dbtoolsclient.cxx index c01974ab966b..79e6eab0a4d6 100644 --- a/svx/source/form/dbtoolsclient.cxx +++ b/svx/source/form/dbtoolsclient.cxx @@ -113,11 +113,10 @@ namespace svxform #if HAVE_FEATURE_DESKTOP #ifndef DISABLE_DYNLOADING - const static OUString sModuleName( DBTOOLS_DLL_NAME ); // load the dbtools library s_hDbtoolsModule = osl_loadModuleRelative( - &thisModule, sModuleName.pData, 0); + &thisModule, OUString(DBTOOLS_DLL_NAME).pData, 0); OSL_ENSURE(NULL != s_hDbtoolsModule, "ODbtoolsClient::registerClient: could not load the dbtools library!"); if (NULL != s_hDbtoolsModule) { |