From: Frederik Gladhorn Date: Sun, 4 Nov 2012 09:32:41 +0000 (+0100) Subject: Accessibility: Make accessibleInterface() in event virtual. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=96e3b44cdccdd42920fc2caf8749688919583d9d;p=profile%2Fivi%2Fqtbase.git Accessibility: Make accessibleInterface() in event virtual. This function can then be used by webkit in a different way. Change-Id: I2e4c0570b5fc446114f63b3dc43e3c4505bcad79 Reviewed-by: Jan Arve Sæther --- diff --git a/src/gui/accessible/qaccessible.h b/src/gui/accessible/qaccessible.h index 1fb6c65..5f61634 100644 --- a/src/gui/accessible/qaccessible.h +++ b/src/gui/accessible/qaccessible.h @@ -462,7 +462,7 @@ public: void setChild(int chld) { m_child = chld; } int child() const { return m_child; } - QAccessibleInterface *accessibleInterface() const; + virtual QAccessibleInterface *accessibleInterface() const; protected: QAccessible::Event m_type;