summaryrefslogtreecommitdiffstats
path: root/parts/classview/navigator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/classview/navigator.cpp')
-rw-r--r--parts/classview/navigator.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/parts/classview/navigator.cpp b/parts/classview/navigator.cpp
index 78415d8c..01bfe2d0 100644
--- a/parts/classview/navigator.cpp
+++ b/parts/classview/navigator.cpp
@@ -289,7 +289,7 @@ void Navigator::refreshNavBars(const TQString &activeFileName, bool clear)
{
TQMap<TQString, TQListViewItem*>::iterator it2 = it;
++it;
- if ( !toLeave.tqcontains( it2.key() ) )
+ if ( !toLeave.contains( it2.key() ) )
{
if (it2.data())
{
@@ -331,7 +331,7 @@ void Navigator::refreshNavBars(const TQString &activeFileName, bool clear)
{
TQMap<TQString, TQListViewItem*>::iterator it2 = itt;
++itt;
- if ( !toLeave.tqcontains( it2.key() ) )
+ if ( !toLeave.contains( it2.key() ) )
{
if (it2.data())
{
@@ -397,14 +397,14 @@ TextPaintItem highlightFunctionName(TQString function, int type, TextPaintStyleS
TQString fScope;
int cutpos;
- if((cutpos = function.tqfind('(')) != -1) {
+ if((cutpos = function.find('(')) != -1) {
args = function.right( function.length() - cutpos );
function = function.left( cutpos );
} else {
ret.addItem( function );
return ret;
}
- if((cutpos = function.tqfindRev(':')) != -1 || (cutpos = function.tqfindRev('.')) != -1) {
+ if((cutpos = function.findRev(':')) != -1 || (cutpos = function.findRev('.')) != -1) {
fScope = function.left( cutpos + 1 );
function = function.right( function.length() - cutpos - 1);
}