summaryrefslogtreecommitdiffstats
path: root/krusader/paneltabbar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krusader/paneltabbar.cpp')
-rw-r--r--krusader/paneltabbar.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/krusader/paneltabbar.cpp b/krusader/paneltabbar.cpp
index 35b8f0e..d8f7b63 100644
--- a/krusader/paneltabbar.cpp
+++ b/krusader/paneltabbar.cpp
@@ -156,10 +156,10 @@ TQString PanelTabBar::squeeze(TQString text, int index) {
{
TQString shortName;
- if( text.tqcontains( ":/" ) )
- shortName = text.left( text.tqfind( ":/" ) ) + ":";
+ if( text.contains( ":/" ) )
+ shortName = text.left( text.find( ":/" ) ) + ":";
- shortName += text.mid( text.tqfindRev( "/" ) + 1 );
+ shortName += text.mid( text.findRev( "/" ) + 1 );
text = shortName;
}