diff -r 17f382c040b1 -r 518105d52e45 videocollection/tsrc/stubs/src/hbmessagebox.cpp --- a/videocollection/tsrc/stubs/src/hbmessagebox.cpp Fri Jul 02 17:14:33 2010 +0300 +++ b/videocollection/tsrc/stubs/src/hbmessagebox.cpp Thu Jul 08 13:05:19 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,