windowctrl-win : make m_tb_window(s) non-static --> more consistent with WindowCtrlUnix

This commit is contained in:
Tobias Ludwig
2020-03-17 19:56:23 +01:00
parent 1a5d5edf94
commit 1cb399a0b2
2 changed files with 2 additions and 8 deletions

View File

@@ -18,12 +18,6 @@
*/
#include <QCoreApplication>
/*
* Statics
*/
quint64 WindowCtrlWin::m_tb_window;
QList< quint64 > WindowCtrlWin::m_tb_windows;
/*
* Constructor

View File

@@ -206,12 +206,12 @@ class WindowCtrlWin : public QObject
/**
* @brief m_tb_window. The Thunderbird window.
*/
static quint64 m_tb_window;
quint64 m_tb_window;
/**
* @brief m_tb_window. The Thunderbird windows.
*/
static QList< quint64 > m_tb_windows;
QList< quint64 > m_tb_windows;
};
#endif // WINDOWCTRLWIN_H