X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmainwin.h;h=2352646d218ca9f6e39407b289f18313ffffc73f;hp=94a2d4b470f9a8939dd5d52999a846448ff98c6b;hb=f9efdde7f3a6004af8f834c409cfa6ae1d877692;hpb=e8a39b4c3c92e193ab861a3fea84a261bb6fbd24 diff --git a/src/qtui/mainwin.h b/src/qtui/mainwin.h index 94a2d4b4..2352646d 100644 --- a/src/qtui/mainwin.h +++ b/src/qtui/mainwin.h @@ -266,25 +266,25 @@ private: ChatMonitorView *_chatMonitorView; TopicWidget *_topicWidget; - QAction *_fullScreenAction; + QAction *_fullScreenAction{nullptr}; QMenu *_fileMenu, *_networksMenu, *_viewMenu, *_bufferViewsMenu, *_settingsMenu, *_helpMenu, *_helpDebugMenu; QMenu *_toolbarMenu; QToolBar *_mainToolBar, *_chatViewToolBar, *_nickToolBar; - QWidget *_awayLog; + QWidget *_awayLog{nullptr}; QMessageBox* _migrationWarning{nullptr}; - bool _layoutLoaded; + bool _layoutLoaded{false}; QSize _normalSize; //!< Size of the non-maximized window QPoint _normalPos; //!< Position of the non-maximized window BufferHotListFilter *_bufferHotList; QHash _jumpKeyMap; - int _activeBufferViewIndex; + int _activeBufferViewIndex{-1}; - bool _aboutToQuit; //closeEvent can occur multiple times on OSX + bool _aboutToQuit{false}; //closeEvent can occur multiple times on OSX friend class QtUi; };