summaryrefslogtreecommitdiffstats
path: root/korganizer/kolistview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/kolistview.cpp')
-rw-r--r--korganizer/kolistview.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/korganizer/kolistview.cpp b/korganizer/kolistview.cpp
index 32ddc327a..24ffb2025 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->tqitemRect( it );
+ r = eventlist->itemRect( it );
/* Show the tip */
TQString tipText( IncidenceFormatter::toolTipStr( mCalendar, i->data() ) );
if ( !tipText.isEmpty() ) {
@@ -248,7 +248,7 @@ KOListView::KOListView( Calendar *calendar,
new KOListViewToolTip( mListView->viewport(), calendar, mListView );
- mSelectedDates.append( TQDate::tqcurrentDate() );
+ mSelectedDates.append( TQDate::currentDate() );
}
KOListView::~KOListView()
@@ -261,7 +261,7 @@ int KOListView::maxDatesHint()
return 0;
}
-int KOListView::tqcurrentDateCount()
+int KOListView::currentDateCount()
{
return mSelectedDates.count();
}
@@ -499,9 +499,9 @@ void KOListView::clear()
mDateList.clear();
}
-TQSize KOListView::tqsizeHint() const
+TQSize KOListView::sizeHint() const
{
- const TQSize s = KOEventView::tqsizeHint();
- return TQSize( s.width() + tqstyle().tqpixelMetric( TQStyle::PM_ScrollBarExtent ) + 1,
+ const TQSize s = KOEventView::sizeHint();
+ return TQSize( s.width() + tqstyle().pixelMetric( TQStyle::PM_ScrollBarExtent ) + 1,
s.height() );
}