diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-23 09:35:39 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-05-23 09:35:39 -0400 |
commit | 68ec7f482812da5534844028915d4e376af39e50 (patch) | |
tree | 1e8777799dec1f15dd66025841d8225a109ff4a6 /sc | |
parent | 882bafb8d83d76f15a42b02fa50f83524b0f2197 (diff) |
Forgot to remove debug statements.
Change-Id: I7653efc19bf590bb5456128b270dd1d59c974599
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index 38f7a3b8a310..d8f143749301 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -1373,7 +1373,6 @@ void Test::testFormulaDepTrackingDeleteRow() // A4 should have a broadcaster with A5 listening to it. SvtBroadcaster* pBC = m_pDoc->GetBroadcaster(ScAddress(0,4,0)); - fprintf(stdout, "Test::testFormulaDepTrackingDeleteRow: broadcaster at A5 = %p\n", pBC); CPPUNIT_ASSERT(pBC); SvtBroadcaster::ListenersType* pListeners = &pBC->GetAllListeners(); CPPUNIT_ASSERT_MESSAGE("A5 should have one listener.", pListeners->size() == 1); @@ -1384,16 +1383,13 @@ void Test::testFormulaDepTrackingDeleteRow() CPPUNIT_ASSERT_EQUAL(9.0, m_pDoc->GetValue(ScAddress(0,4,0))); CPPUNIT_ASSERT_EQUAL(90.0, m_pDoc->GetValue(ScAddress(0,5,0))); - fprintf(stdout, "Test::testFormulaDepTrackingDeleteRow: Deleting row 2....\n"); // Delete row 2. ScDocFunc& rFunc = getDocShell().GetDocFunc(); ScMarkData aMark; aMark.SelectOneTable(0); rFunc.DeleteCells(ScRange(0,1,0,MAXCOL,1,0), &aMark, DEL_CELLSUP, true, true); - fprintf(stdout, "Test::testFormulaDepTrackingDeleteRow: Done deleting row 2.\n"); pBC = m_pDoc->GetBroadcaster(ScAddress(0,3,0)); - fprintf(stdout, "Test::testFormulaDepTrackingDeleteRow: broadcaster at A4 = %p\n", pBC); CPPUNIT_ASSERT_MESSAGE("Broadcaster at A5 should have shifted to A4.", pBC); pListeners = &pBC->GetAllListeners(); CPPUNIT_ASSERT_MESSAGE("A3 should have one listener.", pListeners->size() == 1); |