summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/mainwindow.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2017-10-31 21:28:59 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-10-31 16:32:08 -0700
commit3acc28cebf9d3ebaa48c564f87c0eb85ed43b74c (patch)
treef4cce6cb29b0a89b754293a44cae31f9f4fb8efe /desktop-widgets/mainwindow.cpp
parent945a0a87482dc24c5f12cdaaf1b3576549a4c8a5 (diff)
downloadsubsurface-3acc28cebf9d3ebaa48c564f87c0eb85ed43b74c.tar.gz
Postpone error message display if not in GUI thread
Calls to report_error() crashed if not called from GUI thread. Fix this by postponing error message display if not in GUI thread. Code that creates a thread which possibly calls report_error() is responsible for calling MainWindow::showErrors() to flush the accumulated messages. Note that there is a race condition in report_error() and get_error_string(). Nevertheless, hitting it should be rather unlikely (two threads producing error messages at the same time) and hopefully it can be fixed rather easily. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/mainwindow.cpp')
-rw-r--r--desktop-widgets/mainwindow.cpp16
1 files changed, 13 insertions, 3 deletions
diff --git a/desktop-widgets/mainwindow.cpp b/desktop-widgets/mainwindow.cpp
index 95495b663..bcd8f8e6e 100644
--- a/desktop-widgets/mainwindow.cpp
+++ b/desktop-widgets/mainwindow.cpp
@@ -88,12 +88,22 @@ MainWindow *MainWindow::m_Instance = NULL;
extern "C" void showErrorFromC()
{
+ // Show errors only if we are running in the GUI thread.
+ // If we're not in the GUI thread, let errors accumulate.
+ if (QThread::currentThread() != QCoreApplication::instance()->thread())
+ return;
+
MainWindow *mainwindow = MainWindow::instance();
- if (mainwindow) {
- mainwindow->getNotificationWidget()->showNotification(get_error_string(), KMessageWidget::Error);
- }
+ if (mainwindow)
+ mainwindow->showErrors();
}
+void MainWindow::showErrors()
+{
+ const char *error = get_error_string();
+ if (error && error[0])
+ getNotificationWidget()->showNotification(error, KMessageWidget::Error);
+}
MainWindow::MainWindow() : QMainWindow(),
actionNextDive(0),