diff options
Diffstat (limited to 'kontact/plugins/korganizer/summarywidget.cpp')
-rw-r--r-- | kontact/plugins/korganizer/summarywidget.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kontact/plugins/korganizer/summarywidget.cpp b/kontact/plugins/korganizer/summarywidget.cpp index ee8eefdcd..bbd9be2b8 100644 --- a/kontact/plugins/korganizer/summarywidget.cpp +++ b/kontact/plugins/korganizer/summarywidget.cpp @@ -56,7 +56,7 @@ SummaryWidget::SummaryWidget( KOrganizerPlugin *plugin, TQWidget *parent, { TQVBoxLayout *mainLayout = new TQVBoxLayout( this, 3, 3 ); - TQPixmap icon = KGlobal::iconLoader()->loadIcon( "kontact_date", + TQPixmap icon = TDEGlobal::iconLoader()->loadIcon( "kontact_date", KIcon::Desktop, KIcon::SizeMedium ); TQWidget *header = createHeader( this, icon, i18n( "Calendar" ) ); mainLayout->addWidget( header ); @@ -167,15 +167,15 @@ void SummaryWidget::updateView() ( sD.day() == currentDate.addDays( 1 ).day() ) ) { datestr = i18n( "Tomorrow" ); } else { - datestr = KGlobal::locale()->formatDate( sD ); + datestr = TDEGlobal::locale()->formatDate( sD ); } // Print the date span for multiday, floating events, for the // first day of the event only. if ( ev->isMultiDay() && ev->doesFloat() && dayof == 1 && span > 1 ) { - datestr = KGlobal::locale()->formatDate( ev->dtStart().date() ); + datestr = TDEGlobal::locale()->formatDate( ev->dtStart().date() ); datestr += " -\n " + - KGlobal::locale()->formatDate( sD.addDays( span-1 ) ); + TDEGlobal::locale()->formatDate( sD.addDays( span-1 ) ); } label = new TQLabel( datestr, this ); @@ -225,8 +225,8 @@ void SummaryWidget::updateView() } } datestr = i18n( "Time from - to", "%1 - %2" ) - .arg( KGlobal::locale()->formatTime( sST ) ) - .arg( KGlobal::locale()->formatTime( sET ) ); + .arg( TDEGlobal::locale()->formatTime( sST ) ) + .arg( TDEGlobal::locale()->formatTime( sET ) ); label = new TQLabel( datestr, this ); label->setAlignment( AlignLeft | AlignVCenter ); mLayout->addWidget( label, counter, 3 ); @@ -270,7 +270,7 @@ void SummaryWidget::popupMenu( const TQString &uid ) KPopupMenu popup( this ); TQToolTip::remove( this ); popup.insertItem( i18n( "&Edit Appointment..." ), 0 ); - popup.insertItem( KGlobal::iconLoader()->loadIcon( "editdelete", KIcon::Small), + popup.insertItem( TDEGlobal::iconLoader()->loadIcon( "editdelete", KIcon::Small), i18n( "&Delete Appointment" ), 1 ); switch ( popup.exec( TQCursor::pos() ) ) { |