summaryrefslogtreecommitdiffstats
path: root/sc/qa/unit/ucalc_formula.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-26 10:19:25 +0200
committerNoel Grandin <noel@peralex.com>2015-10-26 10:19:43 +0200
commiteaa34b4e29478770c4707d56aa102491bc8e058a (patch)
tree40a47c34cc90068c1b8648f99667dec44a301716 /sc/qa/unit/ucalc_formula.cxx
parentRevert "sal: fix Android build" (diff)
downloadcore-eaa34b4e29478770c4707d56aa102491bc8e058a.tar.gz
core-eaa34b4e29478770c4707d56aa102491bc8e058a.zip
convert InsertDeleteFlags to use o3tl::typed_flags
Change-Id: I3f6a97195d3364b2a0964f62f11e9c0de9493d64
Diffstat (limited to 'sc/qa/unit/ucalc_formula.cxx')
-rw-r--r--sc/qa/unit/ucalc_formula.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx
index 1e0c06bbb5cc..a8e9100c3835 100644
--- a/sc/qa/unit/ucalc_formula.cxx
+++ b/sc/qa/unit/ucalc_formula.cxx
@@ -2214,7 +2214,7 @@ void Test::testFormulaRefUpdateDeleteContent()
ScDocFunc& rFunc = getDocShell().GetDocFunc();
ScMarkData aMark;
aMark.SetMarkArea(ScAddress(1,1,0));
- rFunc.DeleteContents(aMark, IDF_CONTENTS, true, true);
+ rFunc.DeleteContents(aMark, InsertDeleteFlags::CONTENTS, true, true);
CPPUNIT_ASSERT_MESSAGE("B2 should be empty.", m_pDoc->GetCellType(ScAddress(1,1,0)) == CELLTYPE_NONE);
CPPUNIT_ASSERT_EQUAL(0.0, m_pDoc->GetValue(ScAddress(2,1,0)));