diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-12-20 23:55:43 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-12-21 01:50:17 +0100 |
commit | 64e416d42af6e315bd9e06ab638294a906cae219 (patch) | |
tree | 5a08d0efd522669f01a18725c9b196e5bf31b2fa /sc/qa/unit/ucalc.cxx | |
parent | 5e3059834e30276e520b8e0f701351d51af5c604 (diff) |
fix small problem with range names in copy/paste
Diffstat (limited to 'sc/qa/unit/ucalc.cxx')
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index c3d47ef9914c..f98195da9378 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -184,7 +184,7 @@ public: CPPUNIT_TEST(testFunctionLists); CPPUNIT_TEST(testToggleRefFlag); CPPUNIT_TEST(testAutofilter); - //CPPUNIT_TEST(testCopyPaste); + CPPUNIT_TEST(testCopyPaste); CPPUNIT_TEST(testMergedCells); CPPUNIT_TEST(testUpdateReference); CPPUNIT_TEST_SUITE_END(); @@ -2738,8 +2738,8 @@ void Test::testCopyPaste() //check values after copying rtl::OUString aString; m_pDoc->GetValue(1,1,1, aValue); - CPPUNIT_ASSERT_MESSAGE("copied formula should return 2", aValue == 2); m_pDoc->GetFormula(1,1,1, aString); + CPPUNIT_ASSERT_MESSAGE("copied formula should return 2", aValue == 2); CPPUNIT_ASSERT_MESSAGE("formula string was not copied correctly", aString == aFormulaString); m_pDoc->GetValue(0,1,1, aValue); CPPUNIT_ASSERT_MESSAGE("copied value should be 1", aValue == 1); |