qthighway/examples/hbserviceclient/src/hbserviceclientview.cpp
changeset 14 6fbed849b4f4
parent 4 90517678cc4f
--- a/qthighway/examples/hbserviceclient/src/hbserviceclientview.cpp	Fri Jun 11 14:26:25 2010 +0300
+++ b/qthighway/examples/hbserviceclient/src/hbserviceclientview.cpp	Wed Jun 23 19:08:38 2010 +0300
@@ -196,10 +196,11 @@
             QString tmp = QString::number(++count) + " : " + cnt.mLabel + " " + cnt.mNumber + "\n";
             data.append(tmp) ;
         }
-        QMessageBox msgBox;
-        msgBox.setWindowTitle("Return value");
-        msgBox.setText(data);
-        msgBox.exec();
+        HbMessageBox::information(data);
+        // QMessageBox msgBox;
+        // msgBox.setWindowTitle("Return value");
+        // msgBox.setText(data);
+        // msgBox.exec();
         //mRetMapValue->setText(QString::number(retValue));
     }
 }
@@ -234,11 +235,11 @@
     }    
 
     if (list.count() == 0) {
-        HbMessageBox note;
-        note.setTimeout(10000);
+        HbMessageBox::information(tr("Nothing returned"));
+        // note.setTimeout(10000);
         // "Nothing returned" will be replaced by a hbTrId when it is ready
-        note.setText(tr("Nothing returned"));
-        note.exec();
+        // note.setText(tr("Nothing returned"));
+        // note.information();
     }
     else {
         QString data;
@@ -247,10 +248,11 @@
             QString recipientName = cnt.mDisplayName;
             data += recipientName + "\n";
         }
-        HbMessageBox msgBox;
-        msgBox.setWindowTitle("Returned value");
-        msgBox.setText(data);
-        msgBox.exec();
+        HbMessageBox::information(data);
+        //HbMessageBox msgBox;
+        //msgBox.setWindowTitle("Returned value");
+        //msgBox.setText(data);
+        //msgBox.information();
     }
 }