From adf4ab29f2a1e68d96398b57fa2936c807ea111a Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Wed, 1 Jul 2015 10:44:04 +0200 Subject: [PATCH] JsonWizard: Add some missing overrides Change-Id: Id0ac6cd5736b2ca1eaacb00c446eacc3dd7b4b34 Reviewed-by: Tobias Hunger --- src/plugins/projectexplorer/jsonwizard/jsonwizard.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/projectexplorer/jsonwizard/jsonwizard.h b/src/plugins/projectexplorer/jsonwizard/jsonwizard.h index edc61009858..7809879b9f4 100644 --- a/src/plugins/projectexplorer/jsonwizard/jsonwizard.h +++ b/src/plugins/projectexplorer/jsonwizard/jsonwizard.h @@ -98,8 +98,8 @@ signals: void allDone(const JsonWizard::GeneratorFiles &files); // emitted just after the wizard is done with the files. They are ready to be opened. public slots: - void accept(); - void reject(); + void accept() override; + void reject() override; private slots: void handleNewPages(int pageId);