diff options
author | Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com> | 2011-04-18 07:51:13 (GMT) |
---|---|---|
committer | Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com> | 2011-04-19 08:00:09 (GMT) |
commit | 6c121991f85164d257208b14845c7ff913a687f4 (patch) | |
tree | e65e401b540cf9100f7fe04bd42e5e19c933ff18 /tests/auto/qglyphs | |
parent | 47819dc7257c60e0feb1d02177622593ec0c2d15 (diff) | |
download | Qt-6c121991f85164d257208b14845c7ff913a687f4.zip Qt-6c121991f85164d257208b14845c7ff913a687f4.tar.gz Qt-6c121991f85164d257208b14845c7ff913a687f4.tar.bz2 |
Make sure #ifdef'd tests still have main() function
Otherwise it won't link on QWS
Reviewed-by: TrustMe
Diffstat (limited to 'tests/auto/qglyphs')
-rw-r--r-- | tests/auto/qglyphs/tst_qglyphs.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/auto/qglyphs/tst_qglyphs.cpp b/tests/auto/qglyphs/tst_qglyphs.cpp index a9ae556..ffa0d00 100644 --- a/tests/auto/qglyphs/tst_qglyphs.cpp +++ b/tests/auto/qglyphs/tst_qglyphs.cpp @@ -46,14 +46,13 @@ #include <qtextlayout.h> #include <qfontdatabase.h> -#if !defined(QT_NO_RAWFONT) - // #define DEBUG_SAVE_IMAGE class tst_QGlyphs: public QObject { Q_OBJECT +#if !defined(QT_NO_RAWFONT) private slots: void initTestCase(); void cleanupTestCase(); @@ -77,8 +76,12 @@ private slots: private: int m_testFontId; QFont m_testFont; +#endif // QT_NO_RAWFONT + }; +#if !defined(QT_NO_RAWFONT) + Q_DECLARE_METATYPE(QGlyphs); void tst_QGlyphs::initTestCase() @@ -572,7 +575,8 @@ void tst_QGlyphs::drawRightToLeft() } +#endif // QT_NO_RAWFONT + QTEST_MAIN(tst_QGlyphs) #include "tst_qglyphs.moc" -#endif // QT_NO_RAWFONT |