diff options
-rw-r--r-- | sc/inc/docuno.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/unoobj/docuno.cxx | 12 |
2 files changed, 3 insertions, 11 deletions
diff --git a/sc/inc/docuno.hxx b/sc/inc/docuno.hxx index 4aa8aab990f7..8659d4724cba 100644 --- a/sc/inc/docuno.hxx +++ b/sc/inc/docuno.hxx @@ -120,7 +120,7 @@ public: ScDocument* GetDocument() const; SfxObjectShell* GetEmbeddedObject() const; - void UpdateAllRowHeights( const ScMarkData* pTabMark = NULL, bool bCalcOutputFactor = false ); + void UpdateAllRowHeights(); void BeforeXMLLoading(); void AfterXMLLoading(sal_Bool bRet); diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx index feb3eb8bae27..18b9e5b6b7af 100644 --- a/sc/source/ui/unoobj/docuno.cxx +++ b/sc/source/ui/unoobj/docuno.cxx @@ -412,18 +412,10 @@ SfxObjectShell* ScModelObj::GetEmbeddedObject() const return pDocShell; } -void ScModelObj::UpdateAllRowHeights(const ScMarkData* pTabMark, bool bCalcOutputFactor) +void ScModelObj::UpdateAllRowHeights() { if (pDocShell) - { -#ifdef FIXME_REMOVE_WHEN_RE_BASE_COMPLETE - if (bCalcOutputFactor) - pDocShell->CalcOutputFactor(); -#else - (void)bCalcOutputFactor; -#endif - pDocShell->UpdateAllRowHeights(pTabMark); - } + pDocShell->UpdateAllRowHeights(NULL); } void ScModelObj::BeforeXMLLoading() |