summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2015-09-03 18:47:30 +0200
committerEike Rathke <erack@redhat.com>2015-09-03 19:08:10 +0200
commit884d53813a4c7b9414a135cfaae6119d78768f38 (patch)
tree05ca38c3be2c766fd76108b398c6da26b551487a
parent1873563bb2d9743fe548ceaf2d1429280a27b956 (diff)
remove unused ScDocument::RefreshTableColumnNames(const ScRange&)
Change-Id: Ia3d09478b31503eb6ab9e352b2925bc1b496a8e3
-rw-r--r--sc/inc/document.hxx1
-rw-r--r--sc/source/core/data/documen3.cxx6
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();