diff options
-rw-r--r-- | sw/qa/extras/uiwriter/uiwriter2.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/qa/extras/uiwriter/uiwriter2.cxx b/sw/qa/extras/uiwriter/uiwriter2.cxx index d2035512c393..e59f84a68c68 100644 --- a/sw/qa/extras/uiwriter/uiwriter2.cxx +++ b/sw/qa/extras/uiwriter/uiwriter2.cxx @@ -1626,6 +1626,7 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, testImageComment) CPPUNIT_ASSERT_GREATER(static_cast<size_t>(0), rAnchored.size()); SwAnchoredObject* pObject = rAnchored[0]; long nFrameLeft = pObject->GetObjRect().Left(); + long nFrameTop = pObject->GetObjRect().Top(); // Make sure that the anchor points to the bottom left corner of the image. // Without the accompanying fix in place, this test would have failed with: @@ -1659,7 +1660,7 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, testImageComment) OString aExpected; aExpected += OString::number(nFrameLeft); aExpected += ", "; - aExpected += OString::number(nFrameLeft); + aExpected += OString::number(nFrameTop); aExpected += ", 0, 0"; CPPUNIT_ASSERT_EQUAL(aExpected, aAnchorPos); } |