summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/widgets/qtextedit
diff options
context:
space:
mode:
authorKonstantin Ritt <ritt.ks@gmail.com>2015-05-01 08:21:29 +0400
committerKonstantin Ritt <ritt.ks@gmail.com>2015-07-31 09:50:17 +0000
commitc57c89b3c1b2b61c838b98458f6dbfad297dc7e3 (patch)
tree22b02214cc36104f7b7888e65161f3241182d177 /tests/auto/widgets/widgets/qtextedit
parent073f4f9bb21817d76d55324a74899d2f40118042 (diff)
Don't expose qt_setQtEnableTestFont(bool) by default
Build it only in -developer-build mode for tests that might depend on exact-matching font behavior. Return earlier to avoid doing any useless job. Change-Id: I966ee5689f03403e45f4c957b63e3113f0467803 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@theqtcompany.com>
Diffstat (limited to 'tests/auto/widgets/widgets/qtextedit')
-rw-r--r--tests/auto/widgets/widgets/qtextedit/tst_qtextedit.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/auto/widgets/widgets/qtextedit/tst_qtextedit.cpp b/tests/auto/widgets/widgets/qtextedit/tst_qtextedit.cpp
index 399f82fdca..35a6a8e4e0 100644
--- a/tests/auto/widgets/widgets/qtextedit/tst_qtextedit.cpp
+++ b/tests/auto/widgets/widgets/qtextedit/tst_qtextedit.cpp
@@ -1907,9 +1907,12 @@ void tst_QTextEdit::setText()
QCOMPARE(browser.toPlainText(), QLatin1String("with space"));
}
+#ifdef QT_BUILD_INTERNAL
QT_BEGIN_NAMESPACE
-extern void qt_setQtEnableTestFont(bool value);
+// qfontdatabase.cpp
+Q_AUTOTEST_EXPORT void qt_setQtEnableTestFont(bool value);
QT_END_NAMESPACE
+#endif
#ifdef QT_BUILD_INTERNAL
void tst_QTextEdit::fullWidthSelection_data()