summaryrefslogtreecommitdiffstats
path: root/src/testlib
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@nokia.com>2012-03-12 15:36:31 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-18 21:42:38 +0100
commit36513264daaa0748d32326421732b9e5f212c2b5 (patch)
treef9c5afb27ec580869088cc2f937dc2b12c23347c /src/testlib
parent73b42378e7798046adbc2a508855b52462f406fe (diff)
Make copy and assign private for QAccessibleEvent.
Also make the handling of events in the test pointer based since mac-g++ doesn't seem to like const references the way they were before. Change-Id: I7fe39978d4729b8e586be30978b74aa51ca7cfe6 Reviewed-by: Jan-Arve Sæther <jan-arve.saether@nokia.com>
Diffstat (limited to 'src/testlib')
-rw-r--r--src/testlib/qtestaccessible.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/testlib/qtestaccessible.h b/src/testlib/qtestaccessible.h
index 807cc2f846..6d8d6125c1 100644
--- a/src/testlib/qtestaccessible.h
+++ b/src/testlib/qtestaccessible.h
@@ -98,18 +98,18 @@ public:
}
static void clearEvents() { eventList().clear(); }
static EventList events() { return eventList(); }
- static bool verifyEvent(const QAccessibleEvent& ev)
+ static bool verifyEvent(QAccessibleEvent *ev)
{
if (eventList().isEmpty())
return false;
QAccessibleEvent *first = eventList().takeFirst();
- bool res = *first == ev;
+ bool res = *first == *ev;
delete first;
return res;
}
- static bool containsEvent(const QAccessibleEvent &event) {
+ static bool containsEvent(QAccessibleEvent *event) {
Q_FOREACH (QAccessibleEvent *ev, eventList()) {
- if (*ev == event)
+ if (*ev == *event)
return true;
}
return false;