From ddf5cee8f2223b570f7b709be50edad4b2dcbaee Mon Sep 17 00:00:00 2001 From: kervala Date: Thu, 26 May 2016 19:35:13 +0200 Subject: [PATCH] Fixed: Arguments for slot method --- code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp index a1ec6e561..d2c0a2593 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp @@ -61,7 +61,7 @@ COperationDialog::COperationDialog():QDialog(), m_aborting(false) connect(m_downloader, SIGNAL(downloadInit(qint64, qint64)), SLOT(onProgressInit(qint64, qint64))); connect(m_downloader, SIGNAL(downloadStart()), SLOT(onProgressStart())); connect(m_downloader, SIGNAL(downloadStop()), SLOT(onProgressStop())); - connect(m_downloader, SIGNAL(downloadProgress(qint64)), SLOT(onProgressProgress(qint64))); + connect(m_downloader, SIGNAL(downloadProgress(qint64, QString)), SLOT(onProgressProgress(qint64, QString))); connect(m_downloader, SIGNAL(downloadSuccess(qint64)), SLOT(onProgressSuccess(qint64))); connect(m_downloader, SIGNAL(downloadFail(QString)), SLOT(onProgressFail(QString)));