summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/connectionitems.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/connectionitems.cpp')
-rw-r--r--kdevdesigner/designer/connectionitems.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdevdesigner/designer/connectionitems.cpp b/kdevdesigner/designer/connectionitems.cpp
index efb2406a..d43bb874 100644
--- a/kdevdesigner/designer/connectionitems.cpp
+++ b/kdevdesigner/designer/connectionitems.cpp
@@ -220,7 +220,7 @@ SenderItem::SenderItem( TQTable *table, FormWindow *fw )
TQPtrDictIterator<TQWidget> it( *formWindow->widgets() );
while ( it.current() ) {
- if ( lst.tqfind( it.current()->name() ) != lst.end() ) {
+ if ( lst.find( it.current()->name() ) != lst.end() ) {
++it;
continue;
}
@@ -277,7 +277,7 @@ ReceiverItem::ReceiverItem( TQTable *table, FormWindow *fw )
TQPtrDictIterator<TQWidget> it( *formWindow->widgets() );
while ( it.current() ) {
- if ( lst.tqfind( it.current()->name() ) != lst.end() ) {
+ if ( lst.find( it.current()->name() ) != lst.end() ) {
++it;
continue;
}
@@ -453,7 +453,7 @@ void SlotItem::updateSlotList()
TQMetaData::Protected) ) &&
!ignoreSlot( md->tqt_mo_ci_name ) &&
checkConnectArgs( signal.latin1(), lastReceiver, md->tqt_mo_ci_name ) )
- if ( lst.tqfind( md->tqt_mo_ci_name ) == lst.end() )
+ if ( lst.find( md->tqt_mo_ci_name ) == lst.end() )
lst << MetaDataBase::normalizeFunction( md->tqt_mo_ci_name );
}
@@ -470,7 +470,7 @@ void SlotItem::updateSlotList()
continue;
s = MetaDataBase::normalizeFunction( s );
if ( checkConnectArgs( signal.latin1(), lastReceiver, s ) ) {
- if ( lst.tqfind( (*it).function ) == lst.end() )
+ if ( lst.find( (*it).function ) == lst.end() )
lst << s;
}
}
@@ -487,7 +487,7 @@ void SlotItem::updateSlotList()
continue;
s = MetaDataBase::normalizeFunction( s );
if ( checkConnectArgs( signal.latin1(), lastReceiver, s ) ) {
- if ( lst.tqfind( (*it).function ) == lst.end() )
+ if ( lst.find( (*it).function ) == lst.end() )
lst << s;
}
}