diff options
-rw-r--r-- | sc/inc/document.hxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/documen3.cxx | 6 |
2 files changed, 0 insertions, 7 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index c19bc6feceac..9ea6729f6377 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -570,7 +570,6 @@ public: ScDBData* GetDBAtCursor(SCCOL nCol, SCROW nRow, SCTAB nTab, ScDBDataPortion ePortion); const ScDBData* GetDBAtArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2) const; ScDBData* GetDBAtArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2); - void RefreshTableColumnNames( const ScRange& rRange ); SC_DLLPUBLIC const ScRangeData* GetRangeAtBlock( const ScRange& rBlock, OUString* pName=NULL ) const; diff --git a/sc/source/core/data/documen3.cxx b/sc/source/core/data/documen3.cxx index 53dff9231cb8..32791dab34d1 100644 --- a/sc/source/core/data/documen3.cxx +++ b/sc/source/core/data/documen3.cxx @@ -313,12 +313,6 @@ ScDBData* ScDocument::GetDBAtArea(SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nC return NULL; } -void ScDocument::RefreshTableColumnNames( const ScRange& rRange ) -{ - if (pDBCollection) - pDBCollection->RefreshTableColumnNames( rRange); -} - bool ScDocument::HasPivotTable() const { return pDPCollection && pDPCollection->GetCount(); |