diff -r 45e72b57a2fd -r e3cecb93e76a videocollection/tsrc/stubs/src/hbmessagebox.cpp --- a/videocollection/tsrc/stubs/src/hbmessagebox.cpp Tue Jul 06 14:17:50 2010 +0300 +++ b/videocollection/tsrc/stubs/src/hbmessagebox.cpp Wed Aug 18 09:50:14 2010 +0300 @@ -79,13 +79,19 @@ void HbMessageBox::emitDialogFinished( QObject* receiver, const char* member, int actionNum ) { - if(connect(this, SIGNAL(finished(HbAction *)), receiver, member)) + if(connect(this, SIGNAL(finished(int)), receiver, member)) { - emit finished(mActions.value(actionNum)); - disconnect(this, SIGNAL(finished(HbAction *)), receiver, member); + emit finished(actionNum); + disconnect(this, SIGNAL(finished(int)), receiver, member); } } +void HbMessageBox::setStandardButtons(StandardButtons buttons) +{ + Q_UNUSED(buttons); + //NOP +} + void HbMessageBox::information(const QString &informationText, QGraphicsWidget *headWidget, QGraphicsScene *scene,