diff options
Diffstat (limited to 'korganizer/komonthview.cpp')
-rw-r--r-- | korganizer/komonthview.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp index 669049d74..5c9edbcab 100644 --- a/korganizer/komonthview.cpp +++ b/korganizer/komonthview.cpp @@ -425,8 +425,8 @@ void MonthViewCell::setDate( const TQDate &date ) TQString text; if ( KOGlobals::self()->calendarSystem()->day( date ) == 1 ) { text = i18n("'Month day' for month view cells", "%1 %2") - .tqarg( KOGlobals::self()->calendarSystem()->monthName( date, true ) ) - .tqarg( KOGlobals::self()->calendarSystem()->day(mDate) ); + .arg( KOGlobals::self()->calendarSystem()->monthName( date, true ) ) + .arg( KOGlobals::self()->calendarSystem()->day(mDate) ); TQFontMetrics fm( mLabel->font() ); mLabel->resize( mLabelSize + TQSize( fm.width( text ), 0 ) ); } else { @@ -976,8 +976,8 @@ void KOMonthView::showDates( const TQDate &start, const TQDate & ) mStartDate = mStartDate.addDays( -weekdayCol ); mLabel->setText( i18n( "monthname year", "%1 %2" ) - .tqarg( calSys->monthName( start ) ) - .tqarg( calSys->year( start ) ) ); + .arg( calSys->monthName( start ) ) + .arg( calSys->year( start ) ) ); showLabel( !KOPrefs::instance()->fullViewMonth() ); |