aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/dcc/DccBroker.cpp
diff options
context:
space:
mode:
authorGravatar Elvio Basello2011-01-11 01:49:13 +0000
committerGravatar Elvio Basello2011-01-11 01:49:13 +0000
commit3c7dd9907baaf4eb5eabbf3938b407674b7f03a7 (patch)
tree23e29c3c460a0d981706e9c41b12a65d61c2720f /src/modules/dcc/DccBroker.cpp
parentquick fix (diff)
downloadKVIrc-3c7dd9907baaf4eb5eabbf3938b407674b7f03a7.tar.gz
KVIrc-3c7dd9907baaf4eb5eabbf3938b407674b7f03a7.tar.bz2
KVIrc-3c7dd9907baaf4eb5eabbf3938b407674b7f03a7.zip
fixed format strings
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5339 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/dcc/DccBroker.cpp')
-rw-r--r--src/modules/dcc/DccBroker.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/dcc/DccBroker.cpp b/src/modules/dcc/DccBroker.cpp
index 3f9191f78..806720768 100644
--- a/src/modules/dcc/DccBroker.cpp
+++ b/src/modules/dcc/DccBroker.cpp
@@ -591,9 +591,9 @@ void DccBroker::recvFileManage(DccDescriptor * dcc)
"<b>%5</b> large.<br>" \
"The connection target will be host <b>%6</b> on port <b>%7</b><br>" \
,"dcc" \
- ).arg(dcc->szNick, dcc->szUser, dcc->szHost, dcc->szFileName,
- KviQString::makeSizeReadable(dcc->szFileSize.toULongLong()),
- dcc->szIp, dcc->szPort);
+ ).arg(dcc->szNick, dcc->szUser, dcc->szHost, dcc->szFileName)
+ .arg(KviQString::makeSizeReadable(dcc->szFileSize.toULongLong()))
+ .arg(dcc->szIp, dcc->szPort);
} else {
// passive: we will be listening!
@@ -604,8 +604,8 @@ void DccBroker::recvFileManage(DccDescriptor * dcc)
"<b>%5</b> large.<br>" \
"You will be the passive side of the connection.<br>" \
,"dcc" \
- ).arg(dcc->szNick, dcc->szUser, dcc->szHost, dcc->szFileName,
- KviQString::makeSizeReadable(dcc->szFileSize.toULongLong()));
+ ).arg(dcc->szNick, dcc->szUser, dcc->szHost, dcc->szFileName)
+ .arg(KviQString::makeSizeReadable(dcc->szFileSize.toULongLong()));
}
if(dcc->bIsIncomingAvatar)
@@ -762,7 +762,7 @@ void DccBroker::renameOverwriteResume(DccDialog *box,DccDescriptor * dcc)
"<b>overwrite</b> the existing file, or<br> " \
"<b>resume</b> an incomplete download?" \
,"dcc" \
- ).arg(dcc->szLocalFileName, KviQString::makeSizeReadable(fi.size()));
+ ).arg(dcc->szLocalFileName).arg(KviQString::makeSizeReadable(fi.size()));
} else {
bDisableResume = true;
// the file on disk is larger or equal to the remote one