diff options
-rw-r--r-- | sd/qa/unit/export-tests.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx index 3f5289815aaa..f82b523f53e5 100644 --- a/sd/qa/unit/export-tests.cxx +++ b/sd/qa/unit/export-tests.cxx @@ -202,7 +202,7 @@ void checkFontAttributes( const SdrTextObj* pObj, ItemValue nVal) const ItemType* pAttrib = dynamic_cast<const ItemType *>((*it).pAttr); if (pAttrib) { - CPPUNIT_ASSERT_EQUAL( nVal, (ItemValue)pAttrib->GetValue()); + CPPUNIT_ASSERT_EQUAL( nVal, static_cast<ItemValue>(pAttrib->GetValue())); } } } |