summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-03-01 11:50:13 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-03-01 21:40:02 +0000
commitd69bb1d4535871b981df27f11bd4918ad3a41fe4 (patch)
tree9ce6a76d3f5ebf845049b4a5af067b46d46afb1f
parent17322a611dd5add334f15539193dd0090e99ef01 (diff)
use correct source table
Signed-off-by: Kohei Yoshida <kohei.yoshida@suse.com> Signed-off-by: Michael Stahl <mstahl@redhat.com> Signed-off-by: Michael Meeks <michael.meeks@suse.com>
-rw-r--r--sc/source/core/data/documen2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx
index b0ae78e64d75..c6bf77b9442d 100644
--- a/sc/source/core/data/documen2.cxx
+++ b/sc/source/core/data/documen2.cxx
@@ -955,7 +955,7 @@ sal_uLong ScDocument::TransferTab( ScDocument* pSrcDoc, SCTAB nSrcPos,
// Copy the RTL settings
maTabs[nDestPos]->SetLayoutRTL(pSrcDoc->maTabs[nSrcPos]->IsLayoutRTL());
- maTabs[nDestPos]->SetLoadingRTL(pSrcDoc->maTabs[nDestPos]->IsLoadingRTL());
+ maTabs[nDestPos]->SetLoadingRTL(pSrcDoc->maTabs[nSrcPos]->IsLoadingRTL());
}
else // bestehende Tabelle ersetzen
{