Changeset - 40dbe667beea
[Not reviewed]
0 1 0
HanzZ - 13 years ago 2012-09-21 14:09:19
hanzz.k@gmail.com
m_session should be private
1 file changed with 1 insertions and 2 deletions:
0 comments (0 inline, 0 general)
backends/libcommuni/ircnetworkplugin.h
Show inline comments
 
@@ -23,16 +23,15 @@ class IRCNetworkPlugin : public QObject, public NetworkPlugin {
 
		void handleMessageSendRequest(const std::string &user, const std::string &legacyName, const std::string &message, const std::string &/*xhtml*/);
 

	
 
		void handleJoinRoomRequest(const std::string &user, const std::string &room, const std::string &nickname, const std::string &password);
 

	
 
		void handleLeaveRoomRequest(const std::string &user, const std::string &room);
 

	
 
		std::map<std::string, MyIrcSession *> m_sessions;
 

	
 
	public slots:
 
		void readData();
 
		void sendData(const std::string &string);
 

	
 
	private:
 
		Config *config;
 
		QTcpSocket *m_socket;
 
		std::map<std::string, MyIrcSession *> m_sessions;
 
};
 
\ No newline at end of file
0 comments (0 inline, 0 general)