Skip to content

Commit

Permalink
ifdef -> if for consistency
Browse files Browse the repository at this point in the history
Change-Id: Id95d719425898f9bdbdecf31f89854c3c5bcdf77
  • Loading branch information
reneengelhard committed Sep 16, 2019
1 parent 78c2a22 commit f303e0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions starmath/qa/cppunit/test_starmath.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class Test : public test::BootstrapFixture
void replacePlaceholder();
void viewZoom();

#ifdef HAVE_MORE_FONTS
#if HAVE_MORE_FONTS
void testSmTmpDeviceRestoreFont();
#endif

Expand All @@ -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();
Expand Down Expand Up @@ -145,7 +145,7 @@ void Test::tearDown()
BootstrapFixture::tearDown();
}

#ifdef HAVE_MORE_FONTS
#if HAVE_MORE_FONTS
void Test::testSmTmpDeviceRestoreFont()
{
ScopedVclPtrInstance<Printer> pPrinter;
Expand Down

0 comments on commit f303e0b

Please sign in to comment.