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 /Swiften/Client/CoreClient.h | |
| parent | b66315290cf80b090f1b66eef021c811d1ea0b74 (diff) | |
| download | swift-e9939e9958b0dae2dc6d2211b52dca5058869418.zip swift-e9939e9958b0dae2dc6d2211b52dca5058869418.tar.bz2 | |
Removing unused parameter from Client constructor.
Diffstat (limited to 'Swiften/Client/CoreClient.h')
| -rw-r--r-- | Swiften/Client/CoreClient.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Swiften/Client/CoreClient.h b/Swiften/Client/CoreClient.h index bac78a3..5ecf2c9 100644 --- a/Swiften/Client/CoreClient.h +++ b/Swiften/Client/CoreClient.h @@ -32,7 +32,6 @@ namespace Swift { class TimerFactory; class ClientSession; class BasicSessionStream; - class EventLoop; class PlatformTLSFactories; class CertificateTrustChecker; class NetworkFactories; @@ -53,7 +52,7 @@ namespace Swift { * Constructs a client for the given JID with the given password. * The given eventLoop will be used to post events to. */ - CoreClient(EventLoop* eventLoop, NetworkFactories* networkFactories, const JID& jid, const String& password); + CoreClient(const JID& jid, const String& password, NetworkFactories* networkFactories); ~CoreClient(); void setCertificate(const String& certificate); @@ -207,7 +206,6 @@ namespace Swift { private: JID jid_; String password_; - EventLoop* eventLoop; NetworkFactories* networkFactories; ClientSessionStanzaChannel* stanzaChannel_; IQRouter* iqRouter_; |
Swift