From 6fc92adb8f89e653fd733e77ab24b4fcffe6a909 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 22 Aug 2016 14:54:18 +0200 Subject: convert SdrHdlKind to scoped enum Change-Id: Ib0a06d94f8b51cce1f29f20d1c00d54be939c076 --- sd/qa/unit/tiledrendering/tiledrendering.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sd/qa') diff --git a/sd/qa/unit/tiledrendering/tiledrendering.cxx b/sd/qa/unit/tiledrendering/tiledrendering.cxx index b5de22266b72..268692e72e07 100644 --- a/sd/qa/unit/tiledrendering/tiledrendering.cxx +++ b/sd/qa/unit/tiledrendering/tiledrendering.cxx @@ -412,7 +412,7 @@ void SdTiledRenderingTest::testSetGraphicSelection() CPPUNIT_ASSERT_EQUAL(static_cast(8), pObject->GetHdlCount()); // Take the bottom center one. SdrHdl* pHdl = pObject->GetHdl(6); - CPPUNIT_ASSERT_EQUAL(HDL_LOWER, pHdl->GetKind()); + CPPUNIT_ASSERT_EQUAL((int)SdrHdlKind::Lower, (int)pHdl->GetKind()); Rectangle aShapeBefore = pObject->GetSnapRect(); // Resize. pXImpressDocument->setGraphicSelection(LOK_SETGRAPHICSELECTION_START, convertMm100ToTwip(pHdl->GetPos().getX()), convertMm100ToTwip(pHdl->GetPos().getY())); -- cgit