summaryrefslogtreecommitdiffstats
path: root/korganizer/koprefs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/koprefs.cpp')
-rw-r--r--korganizer/koprefs.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/korganizer/koprefs.cpp b/korganizer/koprefs.cpp
index a5b44cce..66dd686d 100644
--- a/korganizer/koprefs.cpp
+++ b/korganizer/koprefs.cpp
@@ -19,8 +19,8 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
As a special exception, permission is given to link this program
- with any edition of Qt, and distribute the resulting executable,
- without including the source code for Qt in the source distribution.
+ with any edition of TQt, and distribute the resulting executable,
+ without including the source code for TQt in the source distribution.
*/
#include <time.h>
@@ -75,7 +75,7 @@ KOPrefs::KOPrefs() :
mDefaultTimeBarFont = KGlobalSettings::generalFont();
// make a large default time bar font, at least 16 points.
mDefaultTimeBarFont.setPointSize(
- QMAX( mDefaultTimeBarFont.pointSize() + 4, 16 ) );
+ TQMAX( mDefaultTimeBarFont.pointSize() + 4, 16 ) );
mDefaultMonthViewFont = KGlobalSettings::generalFont();
// make it a bit smaller
@@ -403,7 +403,7 @@ bool KOPrefs::thatIsMe( const TQString& _email )
return true;
*/
- // in case email tqcontains a full name, strip it out
+ // in case email contains a full name, strip it out
// the below is the simpler but slower version of the following KMime code
// const TQString email = KPIM::getEmailAddress( _email );
const TQCString tmp = _email.utf8();
@@ -418,14 +418,14 @@ bool KOPrefs::thatIsMe( const TQString& _email )
if ( email == (*it).primaryEmailAddress() )
return true;
const TQStringList & aliases = (*it).emailAliases();
- if ( aliases.find( email ) != aliases.end() )
+ if ( aliases.tqfind( email ) != aliases.end() )
return true;
}
- if ( mAdditionalMails.find( email ) != mAdditionalMails.end() )
+ if ( mAdditionalMails.tqfind( email ) != mAdditionalMails.end() )
return true;
TQStringList lst = mMyAddrBookMails;
- if ( lst.find( email ) != lst.end() )
+ if ( lst.tqfind( email ) != lst.end() )
return true;
return false;
}