diff options
Diffstat (limited to 'wizards/kolabkmailchanges.cpp')
-rw-r--r-- | wizards/kolabkmailchanges.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/wizards/kolabkmailchanges.cpp b/wizards/kolabkmailchanges.cpp index cabbc7d71..97e3a83ab 100644 --- a/wizards/kolabkmailchanges.cpp +++ b/wizards/kolabkmailchanges.cpp @@ -34,7 +34,7 @@ class KolabCustomWriter : public CreateDisconnectedImapAccount::CustomWriter { c.setGroup( "IMAP Resource" ); c.writeEntry( "TheIMAPResourceAccount", id ); - c.writeEntry( "TheIMAPResourceFolderParent", QString(".%1.directory/INBOX").arg( id ) ); + c.writeEntry( "TheIMAPResourceFolderParent", TQString(".%1.directory/INBOX").arg( id ) ); } void writeIds( int, int ) {} }; @@ -104,16 +104,16 @@ void createKMailChanges( KConfigPropagator::Change::List& changes ) c->value = "0"; // TODO: Fix the language changes.append( c ); - QString email; - QString defaultDomain = KolabConfig::self()->server(); - const QString server = KolabConfig::self()->server(); - QString user = KolabConfig::self()->user(); + TQString email; + TQString defaultDomain = KolabConfig::self()->server(); + const TQString server = KolabConfig::self()->server(); + TQString user = KolabConfig::self()->user(); int pos = user.find( "@" ); // with kolab the userid _is_ the full email if ( pos > 0 ) { // The user typed in a full email address. Assume it's correct email = user; - const QString h = user.mid( pos+1 ); + const TQString h = user.mid( pos+1 ); if ( !h.isEmpty() ) // The user did type in a domain on the email address. Use that defaultDomain = h; |