m_session should be private
This commit is contained in:
parent
4717bd0071
commit
40dbe667be
1 changed files with 1 additions and 2 deletions
|
@ -26,8 +26,6 @@ class IRCNetworkPlugin : public QObject, public NetworkPlugin {
|
|||
|
||||
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);
|
||||
|
@ -35,4 +33,5 @@ class IRCNetworkPlugin : public QObject, public NetworkPlugin {
|
|||
private:
|
||||
Config *config;
|
||||
QTcpSocket *m_socket;
|
||||
std::map<std::string, MyIrcSession *> m_sessions;
|
||||
};
|
Loading…
Add table
Reference in a new issue