From f42dc2dd4b22600ca1dc6d8bdcc94aa16dda8276 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Wed, 11 Jul 2018 01:40:41 +0200 Subject: [PATCH] qtui: Remove bogus Quassel instance MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 | 2 -- 1 file changed, 2 deletions(-) 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; }; -- 2.20.1