summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-06 17:41:06 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-06 17:41:06 +0000
commit88c134e8f50b1d57ae26cbfdfb780db6e9711b16 (patch)
treece418a72bff0fe6c1e1384d57dd58b509f05308c /extensions
parent58b8937f85d0caec9ce26a9c4dcd46914164e074 (diff)
INTEGRATION: CWS odbmacros2 (1.4.424); FILE MERGED
2008/02/11 11:14:55 fs 1.4.424.3: IWizardPage is COMMIT_REASON is deprecated - replace usages with CommitPageReason, while I have an svtools-incompatible CWS 2008/01/30 13:19:50 fs 1.4.424.2: canAdvance made const 2008/01/15 09:52:42 fs 1.4.424.1: some re-factoring of OWizardMachine, RoadmapWizard and derived classes, to prepare the migration UI for #i49133#
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/dbpilots/gridwizard.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/extensions/source/dbpilots/gridwizard.hxx b/extensions/source/dbpilots/gridwizard.hxx
index e7e4768486d2..021c7b692887 100644
--- a/extensions/source/dbpilots/gridwizard.hxx
+++ b/extensions/source/dbpilots/gridwizard.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: gridwizard.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 19:30:01 $
+ * last change: $Author: kz $ $Date: 2008-03-06 18:41:06 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -77,7 +77,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 leaveState( WizardState _nState );
@@ -126,8 +126,8 @@ namespace dbp
// OWizardPage overridables
virtual void initializePage();
- virtual sal_Bool commitPage(COMMIT_REASON _eReason);
- sal_Bool determineNextButtonState();
+ virtual sal_Bool commitPage( CommitPageReason _eReason );
+ virtual bool canAdvance() const;
protected:
DECL_LINK(OnMoveOneEntry, PushButton*);