Compile fix for Qt < 5.7

Only after that version, the QAction argument is optional.
This commit is contained in:
Juergen Spitzmueller 2018-12-21 13:37:07 +01:00
parent 4ea64ca89a
commit 7c31bfa423

View File

@ -112,9 +112,9 @@ private:
bool nospellcheck_;
///
QAction * resetdefault_ = new QAction;
QAction * resetdefault_ = new QAction(this);
///
QAction * resetnochange_ = new QAction;
QAction * resetnochange_ = new QAction(this);
};
} // namespace frontend