Save the work.
This commit is contained in:
parent
0866bfd8e9
commit
f22f294eba
@ -45,8 +45,8 @@
|
|||||||
|
|
||||||
FormMain *FormMain::s_instance;
|
FormMain *FormMain::s_instance;
|
||||||
|
|
||||||
FormMain::FormMain(QWidget *parent)
|
FormMain::FormMain(QWidget *parent, Qt::WindowFlags f)
|
||||||
: QMainWindow(parent), m_ui(new Ui::FormMain) {
|
: QMainWindow(parent, f), m_ui(new Ui::FormMain) {
|
||||||
m_ui->setupUi(this);
|
m_ui->setupUi(this);
|
||||||
|
|
||||||
// Initialize singleton.
|
// Initialize singleton.
|
||||||
|
@ -36,7 +36,7 @@ class FormMain : public QMainWindow {
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
// Constructors and destructors.
|
// Constructors and destructors.
|
||||||
explicit FormMain(QWidget *parent = 0);
|
explicit FormMain(QWidget *parent = 0, Qt::WindowFlags f = 0);
|
||||||
virtual ~FormMain();
|
virtual ~FormMain();
|
||||||
|
|
||||||
// Returns menu for the tray icon.
|
// Returns menu for the tray icon.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user