summaryrefslogtreecommitdiffstats
path: root/korganizer/koagenda.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/koagenda.cpp')
-rw-r--r--korganizer/koagenda.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/korganizer/koagenda.cpp b/korganizer/koagenda.cpp
index 8a49360f..f9a1236e 100644
--- a/korganizer/koagenda.cpp
+++ b/korganizer/koagenda.cpp
@@ -1002,7 +1002,7 @@ void KOAgenda::performItemAction(const TQPoint& viewportPos)
// erase current item (i.e. remove it from the multiItem list)
firstItem = moveItem->nextMultiItem();
moveItem->hide();
- mItems.take( mItems.tqfind( moveItem ) );
+ mItems.take( mItems.find( moveItem ) );
removeChild( moveItem );
mActionItem->removeMoveItem(moveItem);
moveItem=firstItem;
@@ -1019,7 +1019,7 @@ void KOAgenda::performItemAction(const TQPoint& viewportPos)
// erase current item
lastItem = moveItem->prevMultiItem();
moveItem->hide();
- mItems.take( mItems.tqfind(moveItem) );
+ mItems.take( mItems.find(moveItem) );
removeChild( moveItem );
moveItem->removeMoveItem( moveItem );
moveItem = lastItem;
@@ -1557,7 +1557,7 @@ TQMemArray<int> KOAgenda::minContentsY()
int ymin = item->cellYTop();
int index = item->cellXLeft();
if ( index>=0 && index<(int)(mSelectedDates.count()) ) {
- if ( ymin < minArray[index] && mItemsToDelete.tqfindRef( item ) == -1 )
+ if ( ymin < minArray[index] && mItemsToDelete.findRef( item ) == -1 )
minArray[index] = ymin;
}
}
@@ -1574,7 +1574,7 @@ TQMemArray<int> KOAgenda::maxContentsY()
int ymax = item->cellYBottom();
int index = item->cellXLeft();
if ( index>=0 && index<(int)(mSelectedDates.count()) ) {
- if ( ymax > maxArray[index] && mItemsToDelete.tqfindRef( item ) == -1 )
+ if ( ymax > maxArray[index] && mItemsToDelete.findRef( item ) == -1 )
maxArray[index] = ymax;
}
}
@@ -1769,7 +1769,7 @@ void KOAgenda::showAgendaItem( KOAgendaItem *agendaItem )
agendaItem->hide();
addChild( agendaItem );
- if ( !mItems.tqcontainsRef( agendaItem ) ) {
+ if ( !mItems.containsRef( agendaItem ) ) {
mItems.append( agendaItem );
}
placeSubCells( agendaItem );
@@ -1785,7 +1785,7 @@ bool KOAgenda::removeAgendaItem( KOAgendaItem *item )
TQPtrList<KOAgendaItem> conflictItems = thisItem->conflictItems();
removeChild( thisItem );
- int pos = mItems.tqfind( thisItem );
+ int pos = mItems.find( thisItem );
if ( pos >= 0 ) {
mItems.take( pos );
taken = true;