diff options
Diffstat (limited to 'kontact/plugins/korganizer/summarywidget.cpp')
-rw-r--r-- | kontact/plugins/korganizer/summarywidget.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/kontact/plugins/korganizer/summarywidget.cpp b/kontact/plugins/korganizer/summarywidget.cpp index cab7788f9..06a4694c4 100644 --- a/kontact/plugins/korganizer/summarywidget.cpp +++ b/kontact/plugins/korganizer/summarywidget.cpp @@ -97,9 +97,9 @@ void SummaryWidget::updateView() TQPixmap pma = loader.loadIcon( "calendaranniversary", KIcon::Small ); TQDate dt; - TQDate currentDate = TQDate::currentDate(); - for ( dt=currentDate; - dt<=currentDate.addDays( days - 1 ); + TQDate tqcurrentDate = TQDate::tqcurrentDate(); + for ( dt=tqcurrentDate; + dt<=tqcurrentDate.addDays( days - 1 ); dt=dt.addDays(1) ) { KCal::Event::List events = mCalendar->events( dt ); @@ -123,8 +123,8 @@ void SummaryWidget::updateView() int span=1; int dayof=1; if ( ev->isMultiDay() ) { TQDate d = ev->dtStart().date(); - if ( d < currentDate ) { - d = currentDate; + if ( d < tqcurrentDate ) { + d = tqcurrentDate; } while ( d < ev->dtEnd().date() ) { if ( d < dt ) { @@ -141,15 +141,15 @@ void SummaryWidget::updateView() // Fill Appointment Pixmap Field label = new TQLabel( this ); - if ( ev->categories().contains( "Birthday" ) ) { + if ( ev->categories().tqcontains( "Birthday" ) ) { label->setPixmap( pmb ); - } else if ( ev->categories().contains( "Anniversary" ) ) { + } else if ( ev->categories().tqcontains( "Anniversary" ) ) { label->setPixmap( pma ); } else { label->setPixmap( pm ); } - label->setMaximumWidth( label->minimumSizeHint().width() ); - label->setAlignment( AlignVCenter ); + label->setMaximumWidth( label->tqminimumSizeHint().width() ); + label->tqsetAlignment( AlignVCenter ); mLayout->addWidget( label, counter, 0 ); mLabels.append( label ); @@ -159,12 +159,12 @@ void SummaryWidget::updateView() // Modify event date for printing TQDate sD = TQDate( dt.year(), dt.month(), dt.day() ); - if ( ( sD.month() == currentDate.month() ) && - ( sD.day() == currentDate.day() ) ) { + if ( ( sD.month() == tqcurrentDate.month() ) && + ( sD.day() == tqcurrentDate.day() ) ) { datestr = i18n( "Today" ); makeBold = true; - } else if ( ( sD.month() == currentDate.addDays( 1 ).month() ) && - ( sD.day() == currentDate.addDays( 1 ).day() ) ) { + } else if ( ( sD.month() == tqcurrentDate.addDays( 1 ).month() ) && + ( sD.day() == tqcurrentDate.addDays( 1 ).day() ) ) { datestr = i18n( "Tomorrow" ); } else { datestr = KGlobal::locale()->formatDate( sD ); @@ -179,7 +179,7 @@ void SummaryWidget::updateView() } label = new TQLabel( datestr, this ); - label->setAlignment( AlignLeft | AlignVCenter ); + label->tqsetAlignment( AlignLeft | AlignVCenter ); if ( makeBold ) { TQFont font = label->font(); font.setBold( true ); @@ -198,7 +198,7 @@ void SummaryWidget::updateView() urlLabel->setText( newtext ); urlLabel->setURL( ev->uid() ); urlLabel->installEventFilter( this ); - urlLabel->setAlignment( urlLabel->alignment() | Qt::WordBreak ); + urlLabel->tqsetAlignment( urlLabel->tqalignment() | Qt::WordBreak ); mLayout->addWidget( urlLabel, counter, 2 ); mLabels.append( urlLabel ); @@ -228,7 +228,7 @@ void SummaryWidget::updateView() .arg( KGlobal::locale()->formatTime( sST ) ) .arg( KGlobal::locale()->formatTime( sET ) ); label = new TQLabel( datestr, this ); - label->setAlignment( AlignLeft | AlignVCenter ); + label->tqsetAlignment( AlignLeft | AlignVCenter ); mLayout->addWidget( label, counter, 3 ); mLabels.append( label ); } @@ -242,7 +242,7 @@ void SummaryWidget::updateView() i18n( "No appointments pending within the next day", "No appointments pending within the next %n days", days ), this, "nothing to see" ); - noEvents->setAlignment( AlignHCenter | AlignVCenter ); + noEvents->tqsetAlignment( AlignHCenter | AlignVCenter ); mLayout->addWidget( noEvents, 0, 2 ); mLabels.append( noEvents ); } |