diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-05-19 12:41:46 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-05-19 12:41:46 +0000 |
commit | 6d92c7097d3f97b00edf029583b8651d88e31f77 (patch) | |
tree | a6f657e6cc418327d8571010d5501a91e772ce2f /extensions | |
parent | b58c30917433d750c932bb099a7b7ac3d08981e2 (diff) |
INTEGRATION: CWS qwizards1 (1.11.88); FILE MERGED
2004/04/05 12:50:38 fs 1.11.88.1: #i27457# must changes in the base class
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/dbpilots/groupboxwiz.cxx | 25 | ||||
-rw-r--r-- | extensions/source/dbpilots/listcombowizard.cxx | 12 |
2 files changed, 14 insertions, 23 deletions
diff --git a/extensions/source/dbpilots/groupboxwiz.cxx b/extensions/source/dbpilots/groupboxwiz.cxx index 92ff4240472e..0bcb2ebdc6f0 100644 --- a/extensions/source/dbpilots/groupboxwiz.cxx +++ b/extensions/source/dbpilots/groupboxwiz.cxx @@ -2,9 +2,9 @@ * * $RCSfile: groupboxwiz.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: hr $ $Date: 2003-03-25 16:03:29 $ + * last change: $Author: kz $ $Date: 2004-05-19 13:41:17 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -125,7 +125,7 @@ namespace dbp } //--------------------------------------------------------------------- - OWizardPage* OGroupBoxWizard::createPage(sal_uInt16 _nState) + OWizardPage* OGroupBoxWizard::createPage(WizardState _nState) { switch (_nState) { @@ -152,7 +152,7 @@ namespace dbp } //--------------------------------------------------------------------- - sal_uInt16 OGroupBoxWizard::determineNextState(sal_uInt16 _nCurrentState) + WizardTypes::WizardState OGroupBoxWizard::determineNextState( WizardState _nCurrentState ) { switch (_nCurrentState) { @@ -179,7 +179,7 @@ namespace dbp } //--------------------------------------------------------------------- - void OGroupBoxWizard::enterState(sal_uInt16 _nState) + void OGroupBoxWizard::enterState(WizardState _nState) { // some stuff to do before calling the base class (modifying our settings) switch (_nState) @@ -219,15 +219,6 @@ namespace dbp } //--------------------------------------------------------------------- - sal_Bool OGroupBoxWizard::leaveState(sal_uInt16 _nState) - { - if (!OControlWizard::leaveState(_nState)) - return sal_False; - - return sal_True; - } - - //--------------------------------------------------------------------- void OGroupBoxWizard::createRadios() { try @@ -332,7 +323,7 @@ namespace dbp rSettings.aValues.clear(); rSettings.aLabels.reserve(m_aExistingRadios.GetEntryCount()); rSettings.aValues.reserve(m_aExistingRadios.GetEntryCount()); - for (sal_uInt16 i=0; i<m_aExistingRadios.GetEntryCount(); ++i) + for (WizardState i=0; i<m_aExistingRadios.GetEntryCount(); ++i) { rSettings.aLabels.push_back(m_aExistingRadios.GetEntry(i)); rSettings.aValues.push_back(String::CreateFromInt32((sal_Int32)(i + 1))); @@ -471,7 +462,7 @@ namespace dbp ,m_aValue (this, ResId(ET_OPTIONVALUE)) ,m_aOptionsLabel (this, ResId(FT_RADIOBUTTONS)) ,m_aOptions (this, ResId(LB_RADIOBUTTONS)) - ,m_nLastSelection((sal_uInt16)-1) + ,m_nLastSelection((WizardState)-1) { FreeResource(); @@ -495,7 +486,7 @@ namespace dbp //--------------------------------------------------------------------- void OOptionValuesPage::implTraveledOptions() { - if ((sal_uInt16)-1 != m_nLastSelection) + if ((WizardState)-1 != m_nLastSelection) { // save the value for the last option DBG_ASSERT(m_nLastSelection < m_aUncommittedValues.size(), "OOptionValuesPage::implTraveledOptions: invalid previous selection index!"); diff --git a/extensions/source/dbpilots/listcombowizard.cxx b/extensions/source/dbpilots/listcombowizard.cxx index 2a6c37fab048..221f5c1863f7 100644 --- a/extensions/source/dbpilots/listcombowizard.cxx +++ b/extensions/source/dbpilots/listcombowizard.cxx @@ -2,9 +2,9 @@ * * $RCSfile: listcombowizard.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: hr $ $Date: 2003-03-25 16:03:29 $ + * last change: $Author: kz $ $Date: 2004-05-19 13:41:46 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -154,7 +154,7 @@ namespace dbp } //--------------------------------------------------------------------- - OWizardPage* OListComboWizard::createPage(sal_uInt16 _nState) + OWizardPage* OListComboWizard::createPage(WizardState _nState) { switch (_nState) { @@ -174,7 +174,7 @@ namespace dbp } //--------------------------------------------------------------------- - sal_uInt16 OListComboWizard::determineNextState(sal_uInt16 _nCurrentState) + WizardTypes::WizardState OListComboWizard::determineNextState(WizardState _nCurrentState) { switch (_nCurrentState) { @@ -190,7 +190,7 @@ namespace dbp } //--------------------------------------------------------------------- - void OListComboWizard::enterState(sal_uInt16 _nState) + void OListComboWizard::enterState(WizardState _nState) { OControlWizard::enterState(_nState); @@ -204,7 +204,7 @@ namespace dbp } //--------------------------------------------------------------------- - sal_Bool OListComboWizard::leaveState(sal_uInt16 _nState) + sal_Bool OListComboWizard::leaveState(WizardState _nState) { if (!OControlWizard::leaveState(_nState)) return sal_False; |