filebrowser/ui/src/notifications.cpp
changeset 24 6053b7ae82ab
parent 17 4f2773374eff
child 25 31fc1277642e
--- a/filebrowser/ui/src/notifications.cpp	Fri May 14 15:53:02 2010 +0300
+++ b/filebrowser/ui/src/notifications.cpp	Thu May 13 20:59:38 2010 +0300
@@ -29,22 +29,24 @@
 {
     HbMessageBox *messageBox = new HbMessageBox(type);
     messageBox->setText(text);
-    if (label.length()) {
+    if(label.length())
+        {
         HbLabel *header = new HbLabel(label, messageBox);
         messageBox->setHeadingWidget(header);
-    }
+        }
     messageBox->setAttribute(Qt::WA_DeleteOnClose);
     messageBox->setTimeout(timeout);
     messageBox->open();
 }
 
-void Notifications::showAboutNote()
+void Notifications::about()
 {
-    showMessageBox(HbMessageBox::MessageTypeInformation,
-                   "Version 5.0.0 - 23h April 2010. Copyright © 2010 Nokia Corporation"
-                        "and/or its subsidiary(-ies). All rights reserved."
-                        "Licensed under Eclipse Public License v1.0.",
-                   "About File Browser"
+    showMessageBox(
+        HbMessageBox::MessageTypeInformation, 
+        "Version 5.0.0 - 23h April 2010. Copyright © 2010 Nokia Corporation"
+            "and/or its subsidiary(-ies). All rights reserved."
+            "Licensed under Eclipse Public License v1.0.", 
+        "About File Browser"
         );
 }
 
@@ -60,16 +62,16 @@
 
 // ---------------------------------------------------------------------------
 
-void Notifications::showInformationNote(const QString &text, const QString &title)
+void Notifications::showInformationNote(const QString &text)
 {
-    showMessageBox(HbMessageBox::MessageTypeInformation, text, title, false);
+    showMessageBox(HbMessageBox::MessageTypeInformation, text, "", false);
 }
 
 // ---------------------------------------------------------------------------
 
 void Notifications::showErrorNote(const QString &text, bool noTimeout)
 {
-    showMessageBox(HbMessageBox::MessageTypeWarning, text, "", noTimeout ? HbPopup::NoTimeout : HbPopup::StandardTimeout);
+    showMessageBox(HbMessageBox::MessageTypeWarning, text, "", noTimeout ? HbPopup::NoTimeout : 3000);
 }
 
 // ---------------------------------------------------------------------------
@@ -83,7 +85,7 @@
 
 bool Notifications::showConfirmationQuery(const QString &aText)
 {
-    return false; //HbMessageBox::question(aText);
+    return HbMessageBox::question(aText);
 }
 
 // ---------------------------------------------------------------------------