renamed IrcConnection_ to IrcServerData

This commit is contained in:
fourtf
2019-09-11 13:51:48 +02:00
parent 158564d0c2
commit eadf5355ee
8 changed files with 24 additions and 24 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ namespace chatterino {
//enum IrcAuthType { Anonymous, /*Sals,*/ Pass, MsgNickServ, NickServ };
struct IrcConnection_ {
struct IrcServerData {
QString host;
int port = 6667;
bool ssl = false;
@@ -34,7 +34,7 @@ public:
static Irc &getInstance();
UnsortedSignalVector<IrcConnection_> connections;
UnsortedSignalVector<IrcServerData> connections;
QAbstractTableModel *newConnectionModel(QObject *parent);
ChannelPtr getOrAddChannel(int serverId, QString name);