mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
945a0a8748
commit
3acc28cebf
3 changed files with 21 additions and 3 deletions
|
@ -89,6 +89,10 @@ public:
|
|||
void enableDisableCloudActions();
|
||||
void setCheckedActionFilterTags(bool checked);
|
||||
|
||||
// Shows errors that have accumulated.
|
||||
// Must be called from GUI thread.
|
||||
void showErrors();
|
||||
|
||||
private
|
||||
slots:
|
||||
/* file menu action */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue