mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-10 02:54:09 +00:00
Compile fix for Qt < 5.7
Only after that version, the QAction argument is optional.
This commit is contained in:
parent
4ea64ca89a
commit
7c31bfa423
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user