(Keep it internal)
Change-Id: I9e99ccbd16cc595d2aff97a26181e8d8c3d9d7ae
Reviewed-by: Frederik Gladhorn <frederik.gladhorn@nokia.com>
d << ")";
return d.space();
}
+
+/*! \internal */
+QDebug operator<<(QDebug d, const QAccessibleEvent &ev)
+{
+ if (!&ev) {
+ d << "QAccessibleEvent(null)";
+ return d;
+ }
+ d.nospace() << "QAccessibleEvent(object=" << hex << ev.object();
+ d.nospace() << dec;
+ d.nospace() << "child=" << ev.child();
+ d << " event=" << qAccessibleEventString(ev.type());
+ d.nospace() << ")";
+ return d.space();
+}
+
#endif
QT_END_NAMESPACE
#ifndef QT_NO_DEBUG_STREAM
Q_GUI_EXPORT QDebug operator<<(QDebug d, const QAccessibleInterface *iface);
+Q_GUI_EXPORT QDebug operator<<(QDebug d, const QAccessibleEvent &ev);
#endif
#endif // QT_NO_ACCESSIBILITY