diff options
Diffstat (limited to 'tqtinterface/qt4/src/kernel/tqaccessible.cpp')
-rw-r--r-- | tqtinterface/qt4/src/kernel/tqaccessible.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tqtinterface/qt4/src/kernel/tqaccessible.cpp b/tqtinterface/qt4/src/kernel/tqaccessible.cpp index ba19cf7..8d7e588 100644 --- a/tqtinterface/qt4/src/kernel/tqaccessible.cpp +++ b/tqtinterface/qt4/src/kernel/tqaccessible.cpp @@ -360,9 +360,9 @@ void AccessibleCache::removeObject(TQObject *object) no accessibility implementation for \a object exists. The function uses the \link TQObject::className() classname - \endlink of \a object to tqfind a suitable implementation. If no + \endlink of \a object to find a suitable implementation. If no implementation for the object's class is available the function - tries to tqfind an implementation for the object's tqparent class. + tries to find an implementation for the object's tqparent class. This function is called to answer an accessibility client's request for object information. You should never need to call this @@ -375,7 +375,7 @@ TQRESULT TQAccessible::queryAccessibleInterface( TQObject *object, TQAccessibleI return TQE_INVALIDARG; if ( qAccessibleInterface ) { - *iface = qAccessibleInterface->tqfind( object ); + *iface = qAccessibleInterface->find( object ); if ( *iface ) { (*iface)->addRef(); return TQS_OK; @@ -477,7 +477,7 @@ bool TQAccessible::isActive() /*! \fn int TQAccessibleInterface::controlAt( int x, int y ) const - Returns the ID of the child that tqcontains the screen coordinates + Returns the ID of the child that contains the screen coordinates (\a x, \a y). This function returns 0 if the point is positioned on the object itself. If the tested point is outside the boundaries of the object this function returns -1. @@ -518,7 +518,7 @@ bool TQAccessible::isActive() control, or the string property of the object itself if \a control is 0. - The \e Name is a string used by clients to identify, tqfind or + The \e Name is a string used by clients to identify, find or announce an accessible object for the user. All objects must have a name that is unique within their container. |