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
+4 -4
View File
@@ -5,13 +5,13 @@
namespace chatterino {
struct IrcConnection_;
struct IrcServerData;
class IrcServer : public AbstractIrcServer
{
public:
explicit IrcServer(const IrcConnection_ &data);
IrcServer(const IrcConnection_ &data,
explicit IrcServer(const IrcServerData &data);
IrcServer(const IrcServerData &data,
const std::vector<std::weak_ptr<Channel>> &restoreChannels);
~IrcServer() override;
@@ -32,7 +32,7 @@ protected:
private:
// pointer so we don't have to circle include Irc2.hpp
IrcConnection_ *data_;
IrcServerData *data_;
};
} // namespace chatterino