mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
Fix warnings.
This commit is contained in:
parent
c483565522
commit
1948391a94
@ -47,7 +47,7 @@ static void setWidgetEnabled(QWidget * obj, bool enabled)
|
||||
class CheckedLineEdit
|
||||
{
|
||||
public:
|
||||
CheckedLineEdit(QLineEdit * input, QWidget * label = 0);
|
||||
CheckedLineEdit(QLineEdit * input, QWidget * label = nullptr);
|
||||
bool check() const;
|
||||
|
||||
private:
|
||||
@ -93,7 +93,8 @@ public:
|
||||
typedef QList<CheckedLineEdit> CheckedWidgetList;
|
||||
|
||||
Private()
|
||||
: okay_(0), apply_(0), cancel_(0), restore_(0), auto_apply_(0), default_(0),
|
||||
: okay_(nullptr), apply_(nullptr), cancel_(nullptr),
|
||||
restore_(nullptr), auto_apply_(nullptr), default_(nullptr),
|
||||
policy_(ButtonPolicy::IgnorantPolicy)
|
||||
{}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user