summaryrefslogtreecommitdiffstats
path: root/languages/cpp/addmethoddialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/addmethoddialog.cpp')
-rw-r--r--languages/cpp/addmethoddialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/languages/cpp/addmethoddialog.cpp b/languages/cpp/addmethoddialog.cpp
index 71f03b5d..80397074 100644
--- a/languages/cpp/addmethoddialog.cpp
+++ b/languages/cpp/addmethoddialog.cpp
@@ -75,7 +75,7 @@ AddMethodDialog::AddMethodDialog( CppSupportPart* cppSupport, ClassDom klass,
while ( it != m.end() )
{
TQString ext = TQFileInfo( it.key() ).extension();
- if ( !headers.tqcontains( ext ) )
+ if ( !headers.contains( ext ) )
sourceFile->insertItem( it.key() );
++it;
}
@@ -168,7 +168,7 @@ void AddMethodDialog::accept()
TQString access = accessID( *it );
TQPair<int, int> funEndPoint = tqMakePair( funEndLine, funEndColumn );
- if ( !points.tqcontains( access ) || points[ access ] < funEndPoint )
+ if ( !points.contains( access ) || points[ access ] < funEndPoint )
{
accessList.remove( access );
accessList.push_back( access ); // move 'access' at the end of the list
@@ -199,7 +199,7 @@ void AddMethodDialog::accept()
TQString str = isInline ? functionDefinition( currentItem ) : functionDeclaration( currentItem );
TQPair<int, int> pt;
- if ( points.tqcontains( *it ) )
+ if ( points.contains( *it ) )
{
pt = points[ *it ];
}
@@ -211,7 +211,7 @@ void AddMethodDialog::accept()
}
editIface->insertText( pt.first + insertedLine + 1, 0 /*pt.second*/, str );
- insertedLine += str.tqcontains( TQChar( '\n' ) );
+ insertedLine += str.contains( TQChar( '\n' ) );
}
}
@@ -408,7 +408,7 @@ TQStringList AddMethodDialog::newAccessList( const TQStringList& accessList ) co
item = item->nextSibling();
TQString access = currentItem->text( 1 );
- if ( !( accessList.tqcontains( access ) || newAccessList.tqcontains( access ) ) )
+ if ( !( accessList.contains( access ) || newAccessList.contains( access ) ) )
newAccessList.push_back( access );
}