summaryrefslogtreecommitdiffstats
path: root/konqueror/konq_view.cc
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit9a3f0aacd44fb866833ebcb852df3cd31475cb33 (patch)
tree9f699684624f4e78e13e7dd2393a103cc6fa8274 /konqueror/konq_view.cc
parent341ad02235b9c85cd31782225181ed475b74eaa3 (diff)
downloadtdebase-9a3f0aacd44fb866833ebcb852df3cd31475cb33.tar.gz
tdebase-9a3f0aacd44fb866833ebcb852df3cd31475cb33.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konqueror/konq_view.cc')
-rw-r--r--konqueror/konq_view.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/konqueror/konq_view.cc b/konqueror/konq_view.cc
index a064e3116..4f02022d4 100644
--- a/konqueror/konq_view.cc
+++ b/konqueror/konq_view.cc
@@ -1056,7 +1056,7 @@ KParts::BrowserHostExtension* KonqView::hostExtension( KParts::ReadOnlyPart *par
if ( !ext )
return 0;
- if ( ext->frameNames().tqcontains( name ) )
+ if ( ext->frameNames().contains( name ) )
return ext;
const TQPtrList<KParts::ReadOnlyPart> children = ext->frames();
@@ -1077,7 +1077,7 @@ bool KonqView::callExtensionMethod( const char *methodName )
if ( !obj ) // not all views have a browser extension !
return false;
- int id = obj->tqmetaObject()->tqfindSlot( methodName );
+ int id = obj->tqmetaObject()->findSlot( methodName );
if ( id == -1 )
return false;
TQUObject o[ 1 ];
@@ -1092,7 +1092,7 @@ bool KonqView::callExtensionBoolMethod( const char *methodName, bool value )
if ( !obj ) // not all views have a browser extension !
return false;
- int id = obj->tqmetaObject()->tqfindSlot( methodName );
+ int id = obj->tqmetaObject()->findSlot( methodName );
if ( id == -1 )
return false;
TQUObject o[ 2 ];
@@ -1109,7 +1109,7 @@ bool KonqView::callExtensionStringMethod( const char *methodName, TQString value
if ( !obj ) // not all views have a browser extension !
return false;
- int id = obj->tqmetaObject()->tqfindSlot( methodName );
+ int id = obj->tqmetaObject()->findSlot( methodName );
if ( id == -1 )
return false;
TQUObject o[ 2 ];
@@ -1126,7 +1126,7 @@ bool KonqView::callExtensionURLMethod( const char *methodName, const KURL& value
if ( !obj ) // not all views have a browser extension !
return false;
- int id = obj->tqmetaObject()->tqfindSlot( methodName );
+ int id = obj->tqmetaObject()->findSlot( methodName );
if ( id == -1 )
return false;
TQUObject o[ 2 ];
@@ -1268,10 +1268,10 @@ bool KonqView::eventFilter( TQObject *obj, TQEvent *e )
TQObjectList *children = m_pPart->widget()->queryList( TQWIDGET_OBJECT_NAME_STRING );
if ( ok &&
- !lstDragURLs.first().url().tqcontains( "javascript:", false ) && // ### this looks like a hack to me
+ !lstDragURLs.first().url().contains( "javascript:", false ) && // ### this looks like a hack to me
ev->source() != m_pPart->widget() &&
children &&
- children->tqfindRef( TQT_TQOBJECT(ev->source()) ) == -1 )
+ children->findRef( TQT_TQOBJECT(ev->source()) ) == -1 )
ev->acceptAction();
delete children;