Kaydet (Commit) 37c00bff authored tarafından Matúš Kukan's avatar Matúš Kukan

typo: fix build: wrong parameter was used

Change-Id: Iaa82352f91167872c9cd39c8ce22b415b9e61d82
üst cb0d8020
......@@ -102,9 +102,11 @@ void SwDbtoolsClient::registerClient()
#if HAVE_FEATURE_DESKTOP
#ifndef DISABLE_DYNLOADING
const OUString sModuleName(DBTOOLS_DLL_NAME);
// load the dbtools library
getDbToolsClientModule() = osl_loadModuleRelative(
&thisModule, DBTOOLS_DLL_NAME, 0);
&thisModule, sModuleName.pData, 0);
OSL_ENSURE(NULL != getDbToolsClientModule(), "SwDbtoolsClient::registerClient: could not load the dbtools library!");
if (NULL != getDbToolsClientModule())
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment