diff options
Diffstat (limited to 'korganizer/journalentry.cpp')
-rw-r--r-- | korganizer/journalentry.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korganizer/journalentry.cpp b/korganizer/journalentry.cpp index ee83b1f52..bff67c764 100644 --- a/korganizer/journalentry.cpp +++ b/korganizer/journalentry.cpp @@ -111,7 +111,7 @@ void JournalDateEntry::clear() // should only be called by the KOJournalView now. void JournalDateEntry::addJournal( Journal *j ) { - TQMap<Journal*,JournalEntry*>::Iterator pos = mEntries.tqfind( j ); + TQMap<Journal*,JournalEntry*>::Iterator pos = mEntries.find( j ); if ( pos != mEntries.end() ) return; JournalEntry *entry = new JournalEntry( j, this ); @@ -156,7 +156,7 @@ void JournalDateEntry::emitNewJournal() void JournalDateEntry::journalEdited( Journal *journal ) { - TQMap<Journal*,JournalEntry*>::Iterator pos = mEntries.tqfind( journal ); + TQMap<Journal*,JournalEntry*>::Iterator pos = mEntries.find( journal ); if ( pos == mEntries.end() ) return; pos.data()->setJournal( journal ); @@ -165,7 +165,7 @@ void JournalDateEntry::journalEdited( Journal *journal ) void JournalDateEntry::journalDeleted( Journal *journal ) { - TQMap<Journal*,JournalEntry*>::Iterator pos = mEntries.tqfind( journal ); + TQMap<Journal*,JournalEntry*>::Iterator pos = mEntries.find( journal ); if ( pos == mEntries.end() ) return; delete pos.data(); |