From: Manuel Nickschas Date: Tue, 10 Jul 2018 23:40:41 +0000 (+0200) Subject: qtui: Remove bogus Quassel instance X-Git-Tag: 0.13-rc1~20 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=f42dc2dd4b22600ca1dc6d8bdcc94aa16dda8276 qtui: Remove bogus Quassel instance 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. --- diff --git a/src/qtui/qtuiapplication.h b/src/qtui/qtuiapplication.h index 8c6320d8..e5e20b54 100644 --- a/src/qtui/qtuiapplication.h +++ b/src/qtui/qtuiapplication.h @@ -88,6 +88,4 @@ private slots: private: bool _aboutToQuit{false}; - - Quassel _quasselInstance; };