summaryrefslogtreecommitdiffstats
path: root/krusader/GUI/profilemanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krusader/GUI/profilemanager.cpp')
-rw-r--r--krusader/GUI/profilemanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/krusader/GUI/profilemanager.cpp b/krusader/GUI/profilemanager.cpp
index 7387ba9..37f633b 100644
--- a/krusader/GUI/profilemanager.cpp
+++ b/krusader/GUI/profilemanager.cpp
@@ -114,12 +114,12 @@ void ProfileManager::newProfile( TQString defaultName )
if( !profile.isEmpty() )
{
int profileNum = 1;
- while( profileList.contains( TQString( "%1" ).arg( profileNum ) ) )
+ while( profileList.contains( TQString( "%1" ).tqarg( profileNum ) ) )
profileNum++;
- TQString profileString = TQString( "%1" ).arg( profileNum );
+ TQString profileString = TQString( "%1" ).tqarg( profileNum );
TQString profileName = profileType + " - " + profileString;
- profileList.append( TQString( "%1" ).arg( profileString ) );
+ profileList.append( TQString( "%1" ).tqarg( profileString ) );
krConfig->setGroup("Private");
krConfig->writeEntry( profileType, profileList );