From f303e0bd03ede6faec52b5bc21c74600b179088e Mon Sep 17 00:00:00 2001 From: Rene Engelhard Date: Mon, 16 Sep 2019 21:54:15 +0200 Subject: [PATCH] ifdef -> if for consistency Change-Id: Id95d719425898f9bdbdecf31f89854c3c5bcdf77 --- starmath/qa/cppunit/test_starmath.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/starmath/qa/cppunit/test_starmath.cxx b/starmath/qa/cppunit/test_starmath.cxx index 03622eb940d49..9ad318a9d3bc8 100644 --- a/starmath/qa/cppunit/test_starmath.cxx +++ b/starmath/qa/cppunit/test_starmath.cxx @@ -66,7 +66,7 @@ class Test : public test::BootstrapFixture void replacePlaceholder(); void viewZoom(); -#ifdef HAVE_MORE_FONTS +#if HAVE_MORE_FONTS void testSmTmpDeviceRestoreFont(); #endif @@ -89,7 +89,7 @@ class Test : public test::BootstrapFixture CPPUNIT_TEST(ParseErrorDoubleSubsupscript); CPPUNIT_TEST(replacePlaceholder); CPPUNIT_TEST(viewZoom); -#ifdef HAVE_MORE_FONTS +#if HAVE_MORE_FONTS CPPUNIT_TEST(testSmTmpDeviceRestoreFont); #endif CPPUNIT_TEST_SUITE_END(); @@ -145,7 +145,7 @@ void Test::tearDown() BootstrapFixture::tearDown(); } -#ifdef HAVE_MORE_FONTS +#if HAVE_MORE_FONTS void Test::testSmTmpDeviceRestoreFont() { ScopedVclPtrInstance pPrinter;