diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/qa/unit/import-tests.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/qa/unit/import-tests.cxx b/sd/qa/unit/import-tests.cxx index ce0d9d17c220..0b032c1295be 100644 --- a/sd/qa/unit/import-tests.cxx +++ b/sd/qa/unit/import-tests.cxx @@ -794,12 +794,12 @@ void SdFiltersTest::testBnc870233_1() const SvxWeightItem *pWeight = dynamic_cast<const SvxWeightItem *>((*it).pAttr); if( pWeight ) { - CPPUNIT_ASSERT_EQUAL( FontWeight::WEIGHT_BOLD, pWeight->GetWeight()); + CPPUNIT_ASSERT_EQUAL( WEIGHT_BOLD, pWeight->GetWeight()); } const SvxPostureItem *pPosture = dynamic_cast<const SvxPostureItem *>((*it).pAttr); if( pPosture ) { - CPPUNIT_ASSERT_EQUAL( FontItalic::ITALIC_NONE, pPosture->GetPosture()); + CPPUNIT_ASSERT_EQUAL( ITALIC_NONE, pPosture->GetPosture()); } } } @@ -821,12 +821,12 @@ void SdFiltersTest::testBnc870233_1() const SvxWeightItem *pWeight = dynamic_cast<const SvxWeightItem *>((*it).pAttr); if( pWeight ) { - CPPUNIT_ASSERT_EQUAL( FontWeight::WEIGHT_NORMAL, pWeight->GetWeight()); + CPPUNIT_ASSERT_EQUAL( WEIGHT_NORMAL, pWeight->GetWeight()); } const SvxPostureItem *pPosture = dynamic_cast<const SvxPostureItem *>((*it).pAttr); if( pPosture ) { - CPPUNIT_ASSERT_EQUAL( FontItalic::ITALIC_NORMAL, pPosture->GetPosture()); + CPPUNIT_ASSERT_EQUAL( ITALIC_NORMAL, pPosture->GetPosture()); } } } |