[Libreoffice-commits] core.git: sc/qa

Kohei Yoshida kohei.yoshida at collabora.com
Thu Feb 6 13:10:25 PST 2014


 sc/qa/unit/ucalc.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 6f229d9fbeab9fb76e8346028d43d732fac22db8
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date:   Thu Feb 6 16:14:29 2014 -0500

    Perhaps this will make the mac tinderbox happy?
    
    Change-Id: Ife277a44abf53c137eb8b9a727a3549ad57662cb

diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index 81e1902..596bd92 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -3614,7 +3614,8 @@ void Test::testCopyPasteSkipEmpty()
     // Prepare a clipboard content interleaved with empty cells.
     ScDocument aClipDoc(SCDOCMODE_CLIP);
     aClipDoc.ResetClip(m_pDoc, &aMark);
-    aClipDoc.SetClipParam(ScClipParam(aSrcRange, false));
+    ScClipParam aParam(aSrcRange, false);
+    aClipDoc.SetClipParam(aParam);
     aClipDoc.SetString(ScAddress(0,0,0), "Clip1");
     aClipDoc.SetString(ScAddress(0,2,0), "Clip2");
     aClipDoc.SetString(ScAddress(0,4,0), "Clip3");


More information about the Libreoffice-commits mailing list