[Libreoffice-commits] .: Branch 'libreoffice-3-5-1' - sc/source

Michael Meeks michael at kemper.freedesktop.org
Thu Mar 1 13:38:36 PST 2012


 sc/source/core/data/documen2.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d69bb1d4535871b981df27f11bd4918ad3a41fe4
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Thu Mar 1 11:50:13 2012 +0100

    use correct source table
    
    Signed-off-by: Kohei Yoshida <kohei.yoshida at suse.com>
    Signed-off-by: Michael Stahl <mstahl at redhat.com>
    Signed-off-by: Michael Meeks <michael.meeks at suse.com>

diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx
index b0ae78e..c6bf77b 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
     {


More information about the Libreoffice-commits mailing list