diff --git a/extensions/source/dbpilots/groupboxwiz.hxx b/extensions/source/dbpilots/groupboxwiz.hxx index f1efe5b5ca20..a601385a2c19 100644 --- a/extensions/source/dbpilots/groupboxwiz.hxx +++ b/extensions/source/dbpilots/groupboxwiz.hxx @@ -4,9 +4,9 @@ * * $RCSfile: groupboxwiz.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-09-08 19:30:50 $ + * last change: $Author: kz $ $Date: 2008-03-06 18:41:35 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -83,7 +83,7 @@ namespace dbp protected: // OWizardMachine overridables virtual ::svt::OWizardPage* createPage( WizardState _nState ); - virtual WizardState determineNextState( WizardState _nCurrentState ); + virtual WizardState determineNextState( WizardState _nCurrentState ) const; virtual void enterState( WizardState _nState ); virtual sal_Bool onFinish(sal_Int32 _nResult); @@ -129,8 +129,8 @@ namespace dbp // OWizardPage overridables virtual void initializePage(); - virtual sal_Bool commitPage(COMMIT_REASON _eReason); - virtual sal_Bool determineNextButtonState(); + virtual sal_Bool commitPage( CommitPageReason _eReason ); + virtual bool canAdvance() const; DECL_LINK( OnMoveEntry, PushButton* ); DECL_LINK( OnEntrySelected, ListBox* ); @@ -157,7 +157,7 @@ namespace dbp protected: // OWizardPage overridables virtual void initializePage(); - virtual sal_Bool commitPage(COMMIT_REASON _eReason); + virtual sal_Bool commitPage( CommitPageReason _eReason ); OOptionGroupSettings& getSettings() { return static_cast(getDialog())->getSettings(); } }; @@ -187,7 +187,7 @@ namespace dbp // OWizardPage overridables virtual void initializePage(); - virtual sal_Bool commitPage(COMMIT_REASON _eReason); + virtual sal_Bool commitPage( CommitPageReason _eReason ); void implTraveledOptions(); @@ -229,8 +229,8 @@ namespace dbp // OWizardPage overridables virtual void initializePage(); - virtual sal_Bool commitPage(COMMIT_REASON _eReason); - virtual sal_Bool determineNextButtonState(); + virtual sal_Bool commitPage( CommitPageReason _eReason ); + virtual bool canAdvance() const; }; //.........................................................................