summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-08-03 00:25:57 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-08-03 02:38:50 +0200
commit5707cb11caddca50f729a2125c8b34606ad5d0c9 (patch)
tree0d623627eb355d5230146cc02f5e4efc19b457ef
parent6cfa53074813a8acc3f148882a9818b94cdcb4c3 (diff)
fix for fdo#39151: set correct table number in local db data
-rw-r--r--sc/source/core/data/table2.cxx10
1 files changed, 9 insertions, 1 deletions
diff --git a/sc/source/core/data/table2.cxx b/sc/source/core/data/table2.cxx
index bdb0bb75d..acf361af3 100644
--- a/sc/source/core/data/table2.cxx
+++ b/sc/source/core/data/table2.cxx
@@ -768,7 +768,15 @@ void ScTable::CopyToTable(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
return;
if (pDBDataNoName)
- pDestTab->SetAnonymousDBData(new ScDBData(*pDBDataNoName));
+ {
+ ScDBData* pNewDBData = new ScDBData(*pDBDataNoName);
+ SCCOL aCol1, aCol2;
+ SCROW aRow1, aRow2;
+ SCTAB aTab;
+ pNewDBData->GetArea(aTab, aCol1, aRow1, aCol2, aRow2);
+ pNewDBData->MoveTo(pDestTab->nTab, aCol1, aRow1, aCol2, aRow2);
+ pDestTab->SetAnonymousDBData(pNewDBData);
+ }
// Charts muessen beim Ein-/Ausblenden angepasst werden
ScChartListenerCollection* pCharts = pDestTab->pDocument->GetChartListenerCollection();