]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
0023564: [EDF] AsterStudy: introduce a feature to show popup notifications V8_5_asterstudy_v0.11
authorvsr <vsr@opencascade.com>
Wed, 13 Jun 2018 09:44:47 +0000 (12:44 +0300)
committervsr <vsr@opencascade.com>
Wed, 13 Jun 2018 09:44:47 +0000 (12:44 +0300)
- Fix a bug: showNotification() does not return a result

src/STD/STD_Application.cxx

index 1aacab91366299bf7ebb859421686e33ff18f674..e3edbab4bbda4ff24f1a664079728e5740c535c7 100755 (executable)
@@ -736,6 +736,7 @@ void STD_Application::updateCommandsStatus()
 */
 int STD_Application::showNotification(const QString& message, const QString& title, int timeout)
 {
+  int uid = -1;
   QtxNotify* ntfMgr = notifyMgr();
   if (ntfMgr)
   {
@@ -746,8 +747,9 @@ int STD_Application::showNotification(const QString& message, const QString& tit
       if (aResMgr)
        delay = aResMgr->integerValue("notification", "timeout", 0) * 1000;
     }
-    ntfMgr->showNotification(message, title, qMax(delay, 0));
+    uid = ntfMgr->showNotification(message, title, qMax(delay, 0));
   }
+  return uid;
 }
 
 /*!