GCC warnings.
--HG-- branch : release
This commit is contained in:
parent
f333831486
commit
c466fc40b4
|
@ -44,7 +44,7 @@ class CheckableMessageBoxPrivate
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CheckableMessageBoxPrivate(QDialog *q)
|
CheckableMessageBoxPrivate(QDialog *q)
|
||||||
: clickedButton(0)
|
: pixmapLabel(nullptr), messageLabel(nullptr), checkBox(nullptr), buttonBox(nullptr), clickedButton(nullptr)
|
||||||
{
|
{
|
||||||
QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred);
|
QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred);
|
||||||
|
|
||||||
|
@ -100,6 +100,8 @@ public:
|
||||||
QCheckBox *checkBox;
|
QCheckBox *checkBox;
|
||||||
QDialogButtonBox *buttonBox;
|
QDialogButtonBox *buttonBox;
|
||||||
QAbstractButton *clickedButton;
|
QAbstractButton *clickedButton;
|
||||||
|
private:
|
||||||
|
Q_DISABLE_COPY(CheckableMessageBoxPrivate)
|
||||||
};
|
};
|
||||||
|
|
||||||
CheckableMessageBox::CheckableMessageBox(QWidget *parent) :
|
CheckableMessageBox::CheckableMessageBox(QWidget *parent) :
|
||||||
|
|
|
@ -120,6 +120,7 @@ private slots:
|
||||||
void slotClicked(QAbstractButton *b);
|
void slotClicked(QAbstractButton *b);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Q_DISABLE_COPY(CheckableMessageBox)
|
||||||
CheckableMessageBoxPrivate *d;
|
CheckableMessageBoxPrivate *d;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user