From 3df0db0bed377b87d99453e4d3bf888dd9f92743 Mon Sep 17 00:00:00 2001 From: Montel Laurent Date: Sat, 30 May 2015 15:39:31 +0200 Subject: [PATCH] Fix signal/Slot --- kmcommands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmcommands.cpp b/kmcommands.cpp index b23be03a9..5f33dbb59 100644 --- a/kmcommands.cpp +++ b/kmcommands.cpp @@ -324,7 +324,7 @@ void KMCommand::transferSelectedMsgs() } else { // wait for the transfer and tell the progressBar the necessary steps if (mProgressDialog.data()) { - connect(mProgressDialog.data(), SIGNAL(cancelClicked()), + connect(mProgressDialog.data(), SIGNAL(canceled()), this, SLOT(slotTransferCancelled())); mProgressDialog.data()->setMaximum(totalSize); }