SVN commit 815011 by rjarosz: Fix title clearing. M +2 -1 infoeventwidget.cpp --- trunk/KDE/kdenetwork/kopete/kopete/infoeventwidget.cpp #815010:815011 @@ -150,7 +150,8 @@ d->currentEvent = 0; d->ui.lblInfo->clear(); d->ui.lblActions->clear(); - d->ui.lblTitle->clear(); + // Can't use clear + static_cast(d->ui.lblTitle)->setText(QString::null); d->ui.lblEvent->setText( "0/0" ); d->ui.buttonPrev->setEnabled( false ); d->ui.buttonNext->setEnabled( false );