Fix compilation
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
parent
9b815e8bee
commit
77f53c02a9
2 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ void PageDialog::closeEvent(QCloseEvent* event)
|
||||||
QDialog::closeEvent(event);
|
QDialog::closeEvent(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PageDialog::handleClose() const
|
bool PageDialog::handleClose()
|
||||||
{
|
{
|
||||||
qDebug() << "Paged dialog close requested";
|
qDebug() << "Paged dialog close requested";
|
||||||
if (!m_container->prepareToClose())
|
if (!m_container->prepareToClose())
|
||||||
|
|
|
@ -31,7 +31,7 @@ class PageDialog : public QDialog {
|
||||||
private:
|
private:
|
||||||
void accept() override;
|
void accept() override;
|
||||||
void closeEvent(QCloseEvent* event) override;
|
void closeEvent(QCloseEvent* event) override;
|
||||||
bool handleClose() const;
|
bool handleClose();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
PageContainer* m_container;
|
PageContainer* m_container;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue