diff options
author | Christian Kandeler <christian.kandeler@nokia.com> | 2010-08-17 13:26:32 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@nokia.com> | 2010-08-17 14:54:08 +0200 |
commit | cd57457a165a6f2d82ef9f749caba4aa585d6bef (patch) | |
tree | 227609fd6b835f7beb3e490981c5d15b85eb9043 | |
parent | 4e90f475245315def644f565b1b5d9e8e0e3092f (diff) | |
download | qt-creator-cd57457a165a6f2d82ef9f749caba4aa585d6bef.tar.gz |
SSH: Fix signal declarations.
-rw-r--r-- | src/plugins/coreplugin/ssh/sftpchannel.cpp | 4 | ||||
-rw-r--r-- | src/plugins/coreplugin/ssh/sftpchannel.h | 2 | ||||
-rw-r--r-- | src/plugins/coreplugin/ssh/sftpchannel_p.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/coreplugin/ssh/sftpchannel.cpp b/src/plugins/coreplugin/ssh/sftpchannel.cpp index ca0ff86d98..cf4020c479 100644 --- a/src/plugins/coreplugin/ssh/sftpchannel.cpp +++ b/src/plugins/coreplugin/ssh/sftpchannel.cpp @@ -65,8 +65,8 @@ SftpChannel::SftpChannel(quint32 channelId, Qt::QueuedConnection); connect(d, SIGNAL(initializationFailed(QString)), this, SIGNAL(initializationFailed(QString)), Qt::QueuedConnection); - connect(d, SIGNAL(dataAvailable(Core::SftpJobId,QString)), this, - SIGNAL(dataAvailable(Core::SftpJobId,QString)), Qt::QueuedConnection); + connect(d, SIGNAL(dataAvailable(Core::SftpJobId, QString)), this, + SIGNAL(dataAvailable(Core::SftpJobId, QString)), Qt::QueuedConnection); connect(d, SIGNAL(finished(Core::SftpJobId,QString)), this, SIGNAL(finished(Core::SftpJobId,QString)), Qt::QueuedConnection); connect(d, SIGNAL(closed()), this, SIGNAL(closed()), Qt::QueuedConnection); diff --git a/src/plugins/coreplugin/ssh/sftpchannel.h b/src/plugins/coreplugin/ssh/sftpchannel.h index 06ad52de5e..19f2de4d59 100644 --- a/src/plugins/coreplugin/ssh/sftpchannel.h +++ b/src/plugins/coreplugin/ssh/sftpchannel.h @@ -110,7 +110,7 @@ signals: * one file at a time. // TODO: Also emit for each file copied by uploadDir(). */ - void dataAvailable(SftpJobId job, const QString &data); + void dataAvailable(Core::SftpJobId job, const QString &data); private: SftpChannel(quint32 channelId, Internal::SshSendFacility &sendFacility); diff --git a/src/plugins/coreplugin/ssh/sftpchannel_p.h b/src/plugins/coreplugin/ssh/sftpchannel_p.h index 63c1fc26ec..62163a6d51 100644 --- a/src/plugins/coreplugin/ssh/sftpchannel_p.h +++ b/src/plugins/coreplugin/ssh/sftpchannel_p.h @@ -61,7 +61,7 @@ signals: void initializationFailed(const QString &reason); void closed(); void finished(Core::SftpJobId job, const QString &error = QString()); - void dataAvailable(SftpJobId job, const QString &data); + void dataAvailable(Core::SftpJobId job, const QString &data); private: typedef QMap<SftpJobId, AbstractSftpOperation::Ptr> JobMap; |