qtui: Remove bogus Quassel instance
authorManuel Nickschas <sputnick@quassel-irc.org>
Tue, 10 Jul 2018 23:40:41 +0000 (01:40 +0200)
committerManuel Nickschas <sputnick@quassel-irc.org>
Thu, 12 Jul 2018 20:49:25 +0000 (22:49 +0200)
A remnant from refactoring, QtUiApplication carried a useless
attribute of type Quassel. This would of course create a second
instance of the singleton, which is not a Good Thing™.

Remove the bogus attribute to ensure that Quassel is only created
once.

src/qtui/qtuiapplication.h

index 8c6320d..e5e20b5 100644 (file)
@@ -88,6 +88,4 @@ private slots:
 
 private:
     bool _aboutToQuit{false};
-
-    Quassel _quasselInstance;
 };