videocollection/tsrc/stubs/src/hbmessagebox.cpp
changeset 52 e3cecb93e76a
parent 24 7d93ee07fb27
child 63 4707a0db12f6
--- 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,