this commit is too big

This commit is contained in:
fourtf
2018-08-02 14:23:27 +02:00
parent 3b3c5d8d75
commit c2e2dfb577
186 changed files with 3626 additions and 2656 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
namespace chatterino {
void IgnoreController::initialize(Application &)
void IgnoreController::initialize(Settings &, Paths &)
{
assert(!this->initialized_);
this->initialized_ = true;
+5 -2
View File
@@ -8,12 +8,15 @@
namespace chatterino {
class Settings;
class Paths;
class IgnoreModel;
class IgnoreController : public Singleton
class IgnoreController final : public Singleton
{
public:
virtual void initialize(Application &app) override;
virtual void initialize(Settings &settings, Paths &paths) override;
UnsortedSignalVector<IgnorePhrase> phrases;