diff options
| -rw-r--r-- | src/modules/system/plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/system/plugin.cpp b/src/modules/system/plugin.cpp index 8208dfc52..0d1e39d5b 100644 --- a/src/modules/system/plugin.cpp +++ b/src/modules/system/plugin.cpp @@ -182,7 +182,7 @@ int KviPlugin::call(const QString& pszFunctionName, int argc, char * argv[], cha { int r; plugin_function function_call; - function_call = (plugin_function)m_pLibrary->resolve(pszFunctionName); + function_call = (plugin_function)m_pLibrary->resolve(pszFunctionName.toUtf8().data()); if (!function_call) { return -1; |
