diff options
| author | 2008-08-28 07:16:21 +0000 | |
|---|---|---|
| committer | 2008-08-28 07:16:21 +0000 | |
| commit | 085b70d176cb89d645692d1a7f2e8d53ca4d8b41 (patch) | |
| tree | f422233b5fb80893c398311e253b48851265d262 /src/modules/system | |
| parent | upported patch to trunk (diff) | |
| download | KVIrc-085b70d176cb89d645692d1a7f2e8d53ca4d8b41.tar.gz KVIrc-085b70d176cb89d645692d1a7f2e8d53ca4d8b41.tar.bz2 KVIrc-085b70d176cb89d645692d1a7f2e8d53ca4d8b41.zip | |
fix
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2330 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/system')
| -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; |
