diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-10-18 16:38:03 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-10-18 20:24:59 -0400 |
commit | 2f821f3b81d093cb6f738c1a51822e907ab80054 (patch) | |
tree | 0c129afe35023ae197eff960fa0eec2e1252c9dc /sc/qa | |
parent | c68642d535f2ebb7f1cd866ad19b1fd018e7cd6d (diff) |
NamedExpression is too lengthy. Let's just call it 'Name'. We'll know.
Change-Id: Ia4da886b050397831383005131ff9f21570934ad
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/unit/ucalc.hxx | 12 | ||||
-rw-r--r-- | sc/qa/unit/ucalc_formula.cxx | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/sc/qa/unit/ucalc.hxx b/sc/qa/unit/ucalc.hxx index 00536466410a..114ca8d68a81 100644 --- a/sc/qa/unit/ucalc.hxx +++ b/sc/qa/unit/ucalc.hxx @@ -133,9 +133,9 @@ public: void testFormulaRefUpdateMoveUndo(); void testFormulaRefUpdateMoveToSheet(); void testFormulaRefUpdateDeleteContent(); - void testFormulaRefUpdateNamedExpression(); - void testFormulaRefUpdateNamedExpressionMove(); - void testFormulaRefUpdateNamedExpressionExpandRef(); + void testFormulaRefUpdateName(); + void testFormulaRefUpdateNameMove(); + void testFormulaRefUpdateNameExpandRef(); void testFormulaRefUpdateValidity(); void testMultipleOperations(); void testFuncCOLUMN(); @@ -425,9 +425,9 @@ public: CPPUNIT_TEST(testFormulaRefUpdateMoveUndo); CPPUNIT_TEST(testFormulaRefUpdateMoveToSheet); CPPUNIT_TEST(testFormulaRefUpdateDeleteContent); - CPPUNIT_TEST(testFormulaRefUpdateNamedExpression); - CPPUNIT_TEST(testFormulaRefUpdateNamedExpressionMove); - CPPUNIT_TEST(testFormulaRefUpdateNamedExpressionExpandRef); + CPPUNIT_TEST(testFormulaRefUpdateName); + CPPUNIT_TEST(testFormulaRefUpdateNameMove); + CPPUNIT_TEST(testFormulaRefUpdateNameExpandRef); CPPUNIT_TEST(testFormulaRefUpdateValidity); CPPUNIT_TEST(testMultipleOperations); CPPUNIT_TEST(testFuncCOLUMN); diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx index 84d34e05b974..3ae29cb4b2ca 100644 --- a/sc/qa/unit/ucalc_formula.cxx +++ b/sc/qa/unit/ucalc_formula.cxx @@ -1944,7 +1944,7 @@ void Test::testFormulaRefUpdateDeleteContent() m_pDoc->DeleteTab(0); } -void Test::testFormulaRefUpdateNamedExpression() +void Test::testFormulaRefUpdateName() { m_pDoc->InsertTab(0, "Formula"); @@ -2075,7 +2075,7 @@ void Test::testFormulaRefUpdateNamedExpression() m_pDoc->DeleteTab(0); } -void Test::testFormulaRefUpdateNamedExpressionMove() +void Test::testFormulaRefUpdateNameMove() { sc::AutoCalcSwitch aACSwitch(*m_pDoc, true); // turn auto calc on. @@ -2177,7 +2177,7 @@ void Test::testFormulaRefUpdateNamedExpressionMove() m_pDoc->DeleteTab(0); } -void Test::testFormulaRefUpdateNamedExpressionExpandRef() +void Test::testFormulaRefUpdateNameExpandRef() { setExpandRefs(true); |