summaryrefslogtreecommitdiffstats
path: root/wizards/kmailchanges.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/kmailchanges.cpp')
-rw-r--r--wizards/kmailchanges.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/kmailchanges.cpp b/wizards/kmailchanges.cpp
index 4ad256f7..66fdd216 100644
--- a/wizards/kmailchanges.cpp
+++ b/wizards/kmailchanges.cpp
@@ -285,11 +285,11 @@ void CreateDisconnectedImapAccount::apply()
// let's use the server name after that.
TQString accountName = mAccountName;
const TQStringList identities = identityManager.identities();
- if ( identities.find( accountName ) != identities.end() ) {
+ if ( identities.tqfind( accountName ) != identities.end() ) {
accountName = mServer;
int i = 2;
// And if there's already one, number them
- while ( identities.find( accountName ) != identities.end() ) {
+ while ( identities.tqfind( accountName ) != identities.end() ) {
accountName = mServer + " " + TQString::number( i++ );
}
}