videocollection/tsrc/stubs/src/hbmessagebox.cpp
changeset 44 518105d52e45
parent 38 ff53afa8ad05
child 63 4707a0db12f6
--- 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,