summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/kernel/tqaccessible.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
commiteaa7ee2e0bbca40ba3173c4304f81957e8964291 (patch)
tree4f793aa48a5080aedc94ce6e519c3b86708f2b88 /tqtinterface/qt4/src/kernel/tqaccessible.cpp
parent79a9d7a46a20d4a0923bc06fc471fdc2176ef865 (diff)
downloadexperimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.tar.gz
experimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains
Diffstat (limited to 'tqtinterface/qt4/src/kernel/tqaccessible.cpp')
-rw-r--r--tqtinterface/qt4/src/kernel/tqaccessible.cpp10
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.