summaryrefslogtreecommitdiffstats
path: root/korganizer/kolistview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/kolistview.cpp')
-rw-r--r--korganizer/kolistview.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/korganizer/kolistview.cpp b/korganizer/kolistview.cpp
index 59b7f17e..35474f89 100644
--- a/korganizer/kolistview.cpp
+++ b/korganizer/kolistview.cpp
@@ -72,7 +72,7 @@ void KOListViewToolTip::maybeTip( const TQPoint &pos )
if ( i && KOPrefs::instance()->mEnableToolTips ) {
/* Calculate the rectangle. */
- r = eventlist->itemRect( it );
+ r = eventlist->tqitemRect( it );
/* Show the tip */
TQString tipText( IncidenceFormatter::toolTipStr( mCalendar, i->data() ) );
if ( !tipText.isEmpty() ) {
@@ -220,8 +220,8 @@ KOListView::KOListView( Calendar *calendar,
mListView->addColumn( i18n("Categories") );
- TQBoxLayout *layoutTop = new TQVBoxLayout( this );
- layoutTop->addWidget( mListView );
+ TQBoxLayout *tqlayoutTop = new TQVBoxLayout( this );
+ tqlayoutTop->addWidget( mListView );
mPopupMenu = eventPopup();
/*
@@ -248,7 +248,7 @@ KOListView::KOListView( Calendar *calendar,
new KOListViewToolTip( mListView->viewport(), calendar, mListView );
- mSelectedDates.append( TQDate::currentDate() );
+ mSelectedDates.append( TQDate::tqcurrentDate() );
}
KOListView::~KOListView()
@@ -261,7 +261,7 @@ int KOListView::maxDatesHint()
return 0;
}
-int KOListView::currentDateCount()
+int KOListView::tqcurrentDateCount()
{
return mSelectedDates.count();
}
@@ -299,7 +299,7 @@ void KOListView::showDates( bool show )
mListView->setColumnWidth( 1, oldColWidth1 );
mListView->setColumnWidth( 3, oldColWidth3 );
}
- mListView->repaint();
+ mListView->tqrepaint();
}
void KOListView::showDates()
@@ -499,9 +499,9 @@ void KOListView::clear()
mDateList.clear();
}
-TQSize KOListView::sizeHint() const
+TQSize KOListView::tqsizeHint() const
{
- const TQSize s = KOEventView::sizeHint();
- return TQSize( s.width() + style().pixelMetric( TQStyle::PM_ScrollBarExtent ) + 1,
+ const TQSize s = KOEventView::tqsizeHint();
+ return TQSize( s.width() + style().tqpixelMetric( TQStyle::PM_ScrollBarExtent ) + 1,
s.height() );
}