summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/notificationwidget.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2018-01-28 22:08:30 +0100
committerGravatar Jan Mulder <jlmulder@xs4all.nl>2018-01-31 14:47:26 +0100
commita25f54e3c29a936bb1bbfa66fa610c31c9b55808 (patch)
tree2091a7339c5f8c9f7169388b7c94dac985e0b078 /desktop-widgets/notificationwidget.cpp
parent1704e0801258d0ae78b18be32488e083458010f1 (diff)
downloadsubsurface-a25f54e3c29a936bb1bbfa66fa610c31c9b55808.tar.gz
Use queued connection to thread-safe MainWindow error handling
Up to now, errors produced by threads were not directly shown in the MainWindow. Code running in the GUI thread had to manually show the errors. This can be simplified by using Qt's queued connection as message passing facility. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/notificationwidget.cpp')
-rw-r--r--desktop-widgets/notificationwidget.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/desktop-widgets/notificationwidget.cpp b/desktop-widgets/notificationwidget.cpp
index e0227010c..7c156ee5c 100644
--- a/desktop-widgets/notificationwidget.cpp
+++ b/desktop-widgets/notificationwidget.cpp
@@ -16,6 +16,11 @@ void NotificationWidget::showNotification(QString message, KMessageWidget::Messa
animatedShow();
}
+void NotificationWidget::showError(QString message)
+{
+ showNotification(message, KMessageWidget::Error);
+}
+
void NotificationWidget::hideNotification()
{
animatedHide();