diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2021-07-28 15:20:51 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2021-07-28 15:34:29 +0200 |
commit | cc7ff6d890ab2cacc7f0273039b15689dad5e0dd (patch) | |
tree | dc2edee383227780e915747e1023ba89510d28bb /sd | |
parent | 96c8255875c0ce45c6621999cc1bc4d9a429cb16 (diff) |
Three identical functions for a class is a bit too much
Change-Id: Ia949f3fe2cbbc8aa524347854faa23807d58e252
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119606
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/core/drawdoc4.cxx | 2 | ||||
-rw-r--r-- | sd/source/core/sdpage.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/dlg/headerfooterdlg.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/DocumentRenderer.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/view/drtxtob.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/drviews2.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/view/drviewse.cxx | 2 |
7 files changed, 10 insertions, 10 deletions
diff --git a/sd/source/core/drawdoc4.cxx b/sd/source/core/drawdoc4.cxx index e078afc58b54..e41e43daf06c 100644 --- a/sd/source/core/drawdoc4.cxx +++ b/sd/source/core/drawdoc4.cxx @@ -967,7 +967,7 @@ void SdDrawDocument::SpellObject(SdrTextObj* pObj) Link<EditStatus&,void> aEvtHdl = pOutl->GetStatusEventHdl(); pOutl->SetStatusEventHdl(LINK(this, SdDrawDocument, OnlineSpellEventHdl)); - OutlinerMode nOldOutlMode = pOutl->GetMode(); + OutlinerMode nOldOutlMode = pOutl->GetOutlinerMode(); OutlinerMode nOutlMode = OutlinerMode::TextObject; if (pObj->GetObjInventor() == SdrInventor::Default && pObj->GetObjIdentifier() == OBJ_OUTLINETEXT) diff --git a/sd/source/core/sdpage.cxx b/sd/source/core/sdpage.cxx index 38b0308bf667..55ee1a8a280d 100644 --- a/sd/source/core/sdpage.cxx +++ b/sd/source/core/sdpage.cxx @@ -491,7 +491,7 @@ SdrObject* SdPage::CreatePresObj(PresObjKind eObjKind, bool bVertical, const ::t { SdrOutliner* pOutliner = static_cast< SdDrawDocument& >(getSdrModelFromSdrPage()).GetInternalOutliner(); - OutlinerMode nOutlMode = pOutliner->GetMode(); + OutlinerMode nOutlMode = pOutliner->GetOutlinerMode(); pOutliner->Init( OutlinerMode::TextObject ); pOutliner->SetStyleSheet( 0, nullptr ); pOutliner->SetVertical( bVertical ); @@ -2379,7 +2379,7 @@ void SdPage::SetObjText(SdrTextObj* pObj, SdrOutliner* pOutliner, PresObjKind eO pOutl->SetUpdateMode( false ); } - OutlinerMode nOutlMode = pOutl->GetMode(); + OutlinerMode nOutlMode = pOutl->GetOutlinerMode(); Size aPaperSize = pOutl->GetPaperSize(); bool bUpdateMode = pOutl->GetUpdateMode(); pOutl->SetUpdateMode(false); diff --git a/sd/source/ui/dlg/headerfooterdlg.cxx b/sd/source/ui/dlg/headerfooterdlg.cxx index 3320ed06b9e3..ddc769551d5a 100644 --- a/sd/source/ui/dlg/headerfooterdlg.cxx +++ b/sd/source/ui/dlg/headerfooterdlg.cxx @@ -557,7 +557,7 @@ void HeaderFooterTabPage::GetOrSetDateTimeLanguage( LanguageType &rLanguage, boo Outliner* pOutl = mpDoc->GetInternalOutliner(); pOutl->Init( OutlinerMode::TextObject ); - OutlinerMode nOutlMode = pOutl->GetMode(); + OutlinerMode nOutlMode = pOutl->GetOutlinerMode(); EditEngine* pEdit = const_cast< EditEngine* >(&pOutl->GetEditEngine()); diff --git a/sd/source/ui/view/DocumentRenderer.cxx b/sd/source/ui/view/DocumentRenderer.cxx index 20f75eea71d3..d0cc984e249b 100644 --- a/sd/source/ui/view/DocumentRenderer.cxx +++ b/sd/source/ui/view/DocumentRenderer.cxx @@ -1123,7 +1123,7 @@ namespace { // Get and set up the outliner. const ::tools::Rectangle aOutRect (rPrinter.GetPageOffset(), rPrinter.GetOutputSize()); Outliner* pOutliner = rDocument.GetInternalOutliner(); - const OutlinerMode nSavedOutlMode (pOutliner->GetMode()); + const OutlinerMode nSavedOutlMode (pOutliner->GetOutlinerMode()); const bool bSavedUpdateMode (pOutliner->GetUpdateMode()); const Size aSavedPaperSize (pOutliner->GetPaperSize()); @@ -1631,7 +1631,7 @@ private: Outliner* pOutliner = mrBase.GetDocument()->GetInternalOutliner(); pOutliner->Init(OutlinerMode::OutlineView); - const OutlinerMode nSavedOutlMode (pOutliner->GetMode()); + const OutlinerMode nSavedOutlMode (pOutliner->GetOutlinerMode()); const bool bSavedUpdateMode (pOutliner->GetUpdateMode()); const Size aSavedPaperSize (pOutliner->GetPaperSize()); const MapMode aSavedMapMode (pOutliner->GetRefMapMode()); diff --git a/sd/source/ui/view/drtxtob.cxx b/sd/source/ui/view/drtxtob.cxx index 01e5675a96c7..13980e1b4bab 100644 --- a/sd/source/ui/view/drtxtob.cxx +++ b/sd/source/ui/view/drtxtob.cxx @@ -266,7 +266,7 @@ void TextObjectBar::GetAttrState( SfxItemSet& rSet ) Paragraph* pPara = aSelList.empty() ? nullptr : *(aSelList.begin()); // find out if we are an OutlineView - bool bIsOutlineView(OutlinerMode::OutlineView == pOLV->GetOutliner()->GetMode()); + bool bIsOutlineView(OutlinerMode::OutlineView == pOLV->GetOutliner()->GetOutlinerMode()); // This is ONLY for OutlineViews if(bIsOutlineView) diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx index 00f32b6d57b6..b370a0d551bb 100644 --- a/sd/source/ui/view/drviews2.cxx +++ b/sd/source/ui/view/drviews2.cxx @@ -496,7 +496,7 @@ public: // Create the outliner from the Outliner* pOutliner = m_rDrawViewShell.GetDoc()->GetInternalOutliner(); - OutlinerMode eOutlinerMode = pOutliner->GetMode(); + OutlinerMode eOutlinerMode = pOutliner->GetOutlinerMode(); comphelper::ScopeGuard const aOutlinerGuard([pOutliner, eOutlinerMode] () { pOutliner->Init(eOutlinerMode); @@ -2487,7 +2487,7 @@ void DrawViewShell::FuTemporary(SfxRequest& rReq) { Outliner* pOutl = GetDoc()->GetInternalOutliner(); pOutl->Init( OutlinerMode::TextObject ); - OutlinerMode nOutlMode = pOutl->GetMode(); + OutlinerMode nOutlMode = pOutl->GetOutlinerMode(); pOutl->SetStyleSheet( 0, nullptr ); pOutl->QuickInsertField( *pFieldItem, ESelection() ); std::unique_ptr<OutlinerParaObject> pOutlParaObject = pOutl->CreateParaObject(); diff --git a/sd/source/ui/view/drviewse.cxx b/sd/source/ui/view/drviewse.cxx index 5e5a3ff38514..3acc0b882c3d 100644 --- a/sd/source/ui/view/drviewse.cxx +++ b/sd/source/ui/view/drviewse.cxx @@ -1483,7 +1483,7 @@ void DrawViewShell::InsertURLField(const OUString& rURL, const OUString& rText, { Outliner* pOutl = GetDoc()->GetInternalOutliner(); pOutl->Init( OutlinerMode::TextObject ); - OutlinerMode nOutlMode = pOutl->GetMode(); + OutlinerMode nOutlMode = pOutl->GetOutlinerMode(); SvxURLField aURLField(rURL, rText, SvxURLFormat::Repr); aURLField.SetTargetFrame(rTarget); |