summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-05-23 17:08:04 +1000
committerQt Continuous Integration System <qt-info@nokia.com>2011-05-26 09:30:03 +0200
commit0ed16a1c5570014abefcc24a8caace3b0967a9b3 (patch)
tree366813f2ccb27407cd1dc4b4d0135b289d1a14df /src
parentdea9ca8b7a4166e1c3d3fc374621ad02c1220d3a (diff)
Remove the redundant QTEST_ACCESSIBILITY define.
QTEST_ACCESSIBILITY was always defined and only used in one autotest. Code that uses accessibility features should be excluded if Qt was built without accessibility rather than based on a define in the test framework. Change-Id: I3a517a579a51f536a0983b43bd99e86292026552 Reviewed-by: pending Reviewed-on: http://codereview.qt.nokia.com/129 Reviewed-by: Morten Johan Sørvig <morten.sorvig@nokia.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/testlib/qtestaccessible.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/testlib/qtestaccessible.h b/src/testlib/qtestaccessible.h
index d304a6fc39..9cec1a6bbe 100644
--- a/src/testlib/qtestaccessible.h
+++ b/src/testlib/qtestaccessible.h
@@ -49,8 +49,6 @@
#ifndef QT_NO_ACCESSIBILITY
-#define QTEST_ACCESSIBILITY
-
#define QVERIFY_EVENT(object, child, event) \
QVERIFY(QTestAccessibility::verifyEvent(object, child, (int)event))
@@ -131,9 +129,9 @@ private:
if (object) {
QApplication* app = qobject_cast<QApplication*>(object);
if ( !app )
- qWarning("QTEST_ACCESSIBILITY: root Object is not a QApplication!");
+ qWarning("%s: root Object is not a QApplication!", Q_FUNC_INFO);
} else {
- qWarning("QTEST_ACCESSIBILITY: root Object called with 0 pointer");
+ qWarning("%s: root Object called with 0 pointer", Q_FUNC_INFO);
}
}