diff options
author | Ahmad Samir <[email protected]> | 2023-11-05 17:02:53 +0200 |
---|---|---|
committer | Ahmad Samir <[email protected]> | 2023-11-28 16:11:59 +0200 |
commit | bacee888ac13cbf164f475458aca90c5dbc195d4 (patch) | |
tree | 88ac86d47defca7d66e8ae4b685d62d202577ae1 /tests/manual/dialogs/wizardpanel.cpp | |
parent | 523cf066285a648b10b277bb1b3b2c7b9d66d464 (diff) |
tests/manual: fix compiler warnings about missing override keyword
Change-Id: I878c430faf97328a3faf15692c252ba1e8e3482f
Reviewed-by: Richard Moe Gustavsen <[email protected]>
Diffstat (limited to 'tests/manual/dialogs/wizardpanel.cpp')
-rw-r--r-- | tests/manual/dialogs/wizardpanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/dialogs/wizardpanel.cpp b/tests/manual/dialogs/wizardpanel.cpp index 36605de9fa1..3e03a07ca8a 100644 --- a/tests/manual/dialogs/wizardpanel.cpp +++ b/tests/manual/dialogs/wizardpanel.cpp @@ -191,7 +191,7 @@ class WizardPage : public QWizardPage public: explicit WizardPage(const QString &title, QWidget *parent = nullptr); - void initializePage(); + void initializePage() override; private: WizardStyleControl *m_styleControl; |