Make qtestaccessible.h compile with QT_NO_KEYWORDS

Change-Id: I2065be84d69db62cdae1ad6ac66a09fc5f3454eb
Reviewed-by: Frederik Gladhorn <frederik.gladhorn@digia.com>
This commit is contained in:
Thiago Macieira 2012-12-22 13:26:10 -08:00 committed by The Qt Project
parent e2fb3f94e8
commit ebcc41ed72

View File

@ -256,7 +256,7 @@ private:
str << "Event " << needle->object() << ", type: "
<< needle->type() << ", child: " << needle->child()
<< " not found at head of event list of size " << haystack.size() << " :";
foreach (const QAccessibleEvent *e, haystack)
Q_FOREACH (const QAccessibleEvent *e, haystack)
str << ' ' << e->object() << ", type: "
<< e->type() << ", child: " << e->child();
return rc;