From 3f44219a9ba2d0ef94ebb767eebb7c43a9bdf67f Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Wed, 8 Jun 2011 14:57:40 +0200 Subject: [PATCH] AbstractMobileAppWizard: Allow subclasses to control the flow of pages The Symbian components wizard would like to hide e.g. the Orientation page. Re-implementing nextId() will allow to do so. Change-Id: Id748d88bbc28b93aba4ffe8fccebf540d0946686x Reviewed-on: http://codereview.qt.nokia.com/395 Reviewed-by: Qt Sanity Bot Reviewed-by: hjk --- .../qt4projectmanager/wizards/abstractmobileappwizard.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/qt4projectmanager/wizards/abstractmobileappwizard.h b/src/plugins/qt4projectmanager/wizards/abstractmobileappwizard.h index 276f05a3fe0..dfd67fe9e2b 100644 --- a/src/plugins/qt4projectmanager/wizards/abstractmobileappwizard.h +++ b/src/plugins/qt4projectmanager/wizards/abstractmobileappwizard.h @@ -65,10 +65,9 @@ protected: virtual void initializePage(int id); virtual void cleanupPage(int id); -private: - virtual int nextId() const; +private: int idOfNextGenericPage() const; Utils::WizardProgressItem *itemOfNextGenericPage() const;