diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-20 14:15:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-20 16:35:09 +0100 |
commit | afa5d63e2adccefd5cabfe2e0f6f78ce217a294d (patch) | |
tree | ff95aa8bed02045d7700b3a327c196b12ed6c801 /svtools | |
parent | cbd717a384e83b54cc7f3e6785504667dcede980 (diff) |
TabPages are no longer loaded from resource files
Change-Id: I009e0f388cfe1861cef89d2148a02380dd47c1ff
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/dialogs/wizardmachine.cxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/svtools/source/dialogs/wizardmachine.cxx b/svtools/source/dialogs/wizardmachine.cxx index 56bc3ee6deb8..88f61450c741 100644 --- a/svtools/source/dialogs/wizardmachine.cxx +++ b/svtools/source/dialogs/wizardmachine.cxx @@ -40,15 +40,6 @@ namespace svt } }; - - //= OWizardPage - - OWizardPage::OWizardPage( Window* _pParent, const ResId& _rResId ) - :TabPage( _pParent, _rResId ) - ,m_pImpl( new WizardPageImplData ) - { - } - OWizardPage::OWizardPage(Window *pParent, const OString& rID, const OUString& rUIXMLDescription) : TabPage(pParent, rID, rUIXMLDescription) @@ -56,25 +47,21 @@ namespace svt { } - OWizardPage::~OWizardPage() { delete m_pImpl; } - void OWizardPage::initializePage() { } - void OWizardPage::ActivatePage() { TabPage::ActivatePage(); updateDialogTravelUI(); } - void OWizardPage::updateDialogTravelUI() { OWizardMachine* pWizardMachine = dynamic_cast< OWizardMachine* >( GetParent() ); @@ -82,21 +69,16 @@ namespace svt pWizardMachine->updateTravelUI(); } - bool OWizardPage::canAdvance() const { return true; } - bool OWizardPage::commitPage( WizardTypes::CommitPageReason ) { return true; } - - //= WizardMachineImplData - struct WizardMachineImplData : public WizardTypes { OUString sTitleBase; // the base for the title |