aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/addon/PackAddonDialog.cpp
diff options
context:
space:
mode:
authorGravatar Elvio Basello2011-04-07 21:48:53 +0000
committerGravatar Elvio Basello2011-04-07 21:48:53 +0000
commit19157ccf9c09a85b7908f3845c0abf892410a6aa (patch)
treef7a028e3cc05661b555a478250e5537f39dfb976 /src/modules/addon/PackAddonDialog.cpp
parentinitial implementation of #934: added the ability to export the log to plain ... (diff)
downloadKVIrc-19157ccf9c09a85b7908f3845c0abf892410a6aa.tar.gz
KVIrc-19157ccf9c09a85b7908f3845c0abf892410a6aa.tar.bz2
KVIrc-19157ccf9c09a85b7908f3845c0abf892410a6aa.zip
added missing argument
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5763 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/addon/PackAddonDialog.cpp')
-rw-r--r--src/modules/addon/PackAddonDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/addon/PackAddonDialog.cpp b/src/modules/addon/PackAddonDialog.cpp
index 49c6273bc..47586dab8 100644
--- a/src/modules/addon/PackAddonDialog.cpp
+++ b/src/modules/addon/PackAddonDialog.cpp
@@ -381,7 +381,7 @@ bool PackAddonDialog::packAddon()
if(QFile::exists(m_szSavePath))
{
- if(QMessageBox::question(this,__tr2qs_ctx("Export Addon - KVIrc","addon"),__tr2qs_ctx("File %1 already exists. Do you want to overwrite it?","addon"),QMessageBox::Yes,QMessageBox::No) == QMessageBox::No)
+ if(QMessageBox::question(this,__tr2qs_ctx("Export Addon - KVIrc","addon"),__tr2qs_ctx("File %1 already exists. Do you want to overwrite it?","addon").arg(m_szSavePath),QMessageBox::Yes,QMessageBox::No) == QMessageBox::No)
return false;
}