unoawt: merged in latest changes from CWS slidecopy (rebase to m80)
This commit is contained in:
commit
028f64e749
8 changed files with 10 additions and 10 deletions
|
@ -1133,7 +1133,7 @@ void ChartTypeTabPage::initializePage()
|
|||
}
|
||||
}
|
||||
|
||||
sal_Bool ChartTypeTabPage::commitPage( CommitPageReason /*eReason*/ )
|
||||
sal_Bool ChartTypeTabPage::commitPage( ::svt::WizardTypes::CommitPageReason /*eReason*/ )
|
||||
{
|
||||
//commit changes to model
|
||||
if( !m_bDoLiveUpdate && m_pCurrentMainType )
|
||||
|
|
|
@ -73,7 +73,7 @@ public:
|
|||
virtual ~ChartTypeTabPage();
|
||||
|
||||
virtual void initializePage();
|
||||
virtual sal_Bool commitPage( CommitPageReason eReason );
|
||||
virtual sal_Bool commitPage( ::svt::WizardTypes::CommitPageReason eReason );
|
||||
|
||||
virtual ::com::sun::star::uno::Reference<
|
||||
::com::sun::star::chart2::XChartTypeTemplate > getCurrentTemplate() const;
|
||||
|
|
|
@ -382,10 +382,10 @@ void DataSourceTabPage::DeactivatePage()
|
|||
|
||||
void DataSourceTabPage::commitPage()
|
||||
{
|
||||
commitPage(eFinish);
|
||||
commitPage(::svt::WizardTypes::eFinish);
|
||||
}
|
||||
|
||||
sal_Bool DataSourceTabPage::commitPage( CommitPageReason /*eReason*/ )
|
||||
sal_Bool DataSourceTabPage::commitPage( ::svt::WizardTypes::CommitPageReason /*eReason*/ )
|
||||
{
|
||||
//ranges may have been edited in the meanwhile (dirty is true in that case here)
|
||||
if( isValid() )
|
||||
|
|
|
@ -89,7 +89,7 @@ public:
|
|||
protected:
|
||||
// OWizardPage
|
||||
virtual void ActivatePage();
|
||||
virtual sal_Bool commitPage( CommitPageReason eReason );
|
||||
virtual sal_Bool commitPage( ::svt::WizardTypes::CommitPageReason eReason );
|
||||
|
||||
//TabPage
|
||||
virtual void DeactivatePage();
|
||||
|
|
|
@ -221,10 +221,10 @@ void RangeChooserTabPage::DeactivatePage()
|
|||
|
||||
void RangeChooserTabPage::commitPage()
|
||||
{
|
||||
commitPage(eFinish);
|
||||
commitPage(::svt::WizardTypes::eFinish);
|
||||
}
|
||||
|
||||
sal_Bool RangeChooserTabPage::commitPage( CommitPageReason /*eReason*/ )
|
||||
sal_Bool RangeChooserTabPage::commitPage( ::svt::WizardTypes::CommitPageReason /*eReason*/ )
|
||||
{
|
||||
//ranges may have been edited in the meanwhile (dirty is true in that case here)
|
||||
if( isValid() )
|
||||
|
|
|
@ -73,7 +73,7 @@ protected: //methods
|
|||
|
||||
//OWizardPage
|
||||
virtual void ActivatePage();
|
||||
virtual sal_Bool commitPage( CommitPageReason eReason );
|
||||
virtual sal_Bool commitPage( ::svt::WizardTypes::CommitPageReason eReason );
|
||||
|
||||
//TabPage
|
||||
virtual void DeactivatePage();
|
||||
|
|
|
@ -125,7 +125,7 @@ void TitlesAndObjectsTabPage::initializePage()
|
|||
m_bCommitToModel = true;
|
||||
}
|
||||
|
||||
sal_Bool TitlesAndObjectsTabPage::commitPage( CommitPageReason /*eReason*/ )
|
||||
sal_Bool TitlesAndObjectsTabPage::commitPage( ::svt::WizardTypes::CommitPageReason /*eReason*/ )
|
||||
{
|
||||
if( m_apTitleResources->IsModified() ) //titles may have changed in the meanwhile
|
||||
commitToModel();
|
||||
|
|
|
@ -59,7 +59,7 @@ public:
|
|||
virtual ~TitlesAndObjectsTabPage();
|
||||
|
||||
virtual void initializePage();
|
||||
virtual sal_Bool commitPage( CommitPageReason eReason );
|
||||
virtual sal_Bool commitPage( ::svt::WizardTypes::CommitPageReason eReason );
|
||||
virtual bool canAdvance() const;
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Reference in a new issue