diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-02-02 21:11:47 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-02-02 21:11:47 (GMT) |
commit | e9939e9958b0dae2dc6d2211b52dca5058869418 (patch) | |
tree | 57ab81b84f28f00531a29a5c2d1a0baba172dd1f /Swift/Controllers | |
parent | b66315290cf80b090f1b66eef021c811d1ea0b74 (diff) | |
download | swift-e9939e9958b0dae2dc6d2211b52dca5058869418.zip swift-e9939e9958b0dae2dc6d2211b52dca5058869418.tar.bz2 |
Removing unused parameter from Client constructor.
Diffstat (limited to 'Swift/Controllers')
-rw-r--r-- | Swift/Controllers/MainController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/MainController.cpp b/Swift/Controllers/MainController.cpp index d7e1941..1b513cd 100644 --- a/Swift/Controllers/MainController.cpp +++ b/Swift/Controllers/MainController.cpp @@ -377,7 +377,7 @@ void MainController::performLoginFromCachedCredentials() { certificateStorage_ = certificateStorageFactory_->createCertificateStorage(jid_.toBare()); certificateTrustChecker_ = new CertificateStorageTrustChecker(certificateStorage_); - client_ = boost::make_shared<Swift::Client>(eventLoop_, networkFactories_, clientJID, password_, storages_); + client_ = boost::make_shared<Swift::Client>(clientJID, password_, networkFactories_, storages_); clientInitialized_ = true; client_->setCertificateTrustChecker(certificateTrustChecker_); client_->onDataRead.connect(boost::bind(&XMLConsoleController::handleDataRead, xmlConsoleController_, _1)); |