aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Alexey Uzhva2008-08-27 13:43:06 +0000
committerGravatar Alexey Uzhva2008-08-27 13:43:06 +0000
commit44f50eb36662db23981c95d66c14619bbc19b516 (patch)
tree29304cef6483197b279deb42a5cbee92492c88a8
parentclean (diff)
downloadKVIrc-44f50eb36662db23981c95d66c14619bbc19b516.tar.gz
KVIrc-44f50eb36662db23981c95d66c14619bbc19b516.tar.bz2
KVIrc-44f50eb36662db23981c95d66c14619bbc19b516.zip
fix
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2316 17fca916-40b9-46aa-a4ea-0a15b648b75c
-rw-r--r--src/kvirc/kernel/kvi_app_setup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kvirc/kernel/kvi_app_setup.cpp b/src/kvirc/kernel/kvi_app_setup.cpp
index f36f86356..e0cec9945 100644
--- a/src/kvirc/kernel/kvi_app_setup.cpp
+++ b/src/kvirc/kernel/kvi_app_setup.cpp
@@ -749,7 +749,7 @@ void KviApp::setupBegin()
{
KviMessageBox::warning(__tr2qs("Ops...it looks like I can't load modules on this sytem.\n" \
"I have been looking for the %s library but I haven't been able to load it\n" \
- "due to the following error: \"%Q\"\nAborting."),szSetupLib.toUtf8().data(),&(g_pSetupLibrary->errorString()));
+ "due to the following error: \"%s\"\nAborting."),szSetupLib.toUtf8().data(),g_pSetupLibrary->errorString().toUtf8().data());
#if defined(COMPILE_ON_WINDOWS)
ExitProcess(-1);
#elif defined(COMPILE_ON_MINGW)