diff options
| author | Remko Tronçon <git@el-tramo.be> | 2009-07-14 19:33:05 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2009-07-14 19:33:05 (GMT) | 
| commit | d2625df30861a4caa984031a6990d19dfebc3367 (patch) | |
| tree | 9f6b36168d2a417f0e4ef393b099428c2024223e /Swiften/Client/Session.cpp | |
| parent | ee3a46975986865fe5064f9d87a27277fc6c235a (diff) | |
| download | swift-contrib-d2625df30861a4caa984031a6990d19dfebc3367.zip swift-contrib-d2625df30861a4caa984031a6990d19dfebc3367.tar.bz2  | |
Make all Connection instances shared_ptrs.
Diffstat (limited to 'Swiften/Client/Session.cpp')
| -rw-r--r-- | Swiften/Client/Session.cpp | 2 | 
1 files changed, 0 insertions, 2 deletions
diff --git a/Swiften/Client/Session.cpp b/Swiften/Client/Session.cpp index 1ae97d6..087880f 100644 --- a/Swiften/Client/Session.cpp +++ b/Swiften/Client/Session.cpp @@ -31,7 +31,6 @@ Session::Session(const JID& jid, ConnectionFactory* connectionFactory, TLSLayerF  		payloadSerializers_(payloadSerializers),  		state_(Initial),   		error_(NoError), -		connection_(0),  		xmppLayer_(0),   		tlsLayer_(0),  		connectionLayer_(0),  @@ -46,7 +45,6 @@ Session::~Session() {  	delete connectionLayer_;  	delete tlsLayer_;  	delete xmppLayer_; -	delete connection_;  }  void Session::start() {  | 
 Swift