Skip to content

Commit 67a8a33

Browse files
author
RubioJr9
committed
Fixed Linux closing bug
1 parent 2229eb7 commit 67a8a33

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/Core/Application/Application.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,8 @@ namespace SCIRun
6464
{
6565
namespace Core
6666
{
67-
class ApplicationPrivate
67+
struct ApplicationPrivate
6868
{
69-
public:
7069
CommandLineParser parser;
7170
boost::filesystem::path app_filepath_;
7271
boost::filesystem::path app_filename_;

src/Dataflow/Engine/Controller/NetworkEditorController.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ NetworkEditorController::~NetworkEditorController()
102102
#ifdef BUILD_WITH_PYTHON
103103
NetworkEditorPythonAPI::clearImpl();
104104
#endif
105+
executionManager_.stop();
105106
}
106107

107108
namespace

src/Interface/Application/SCIRunMainWindowQtOverrides.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ void SCIRunMainWindow::closeEvent(QCloseEvent* event)
108108
{
109109
writeSettings();
110110
event->accept();
111+
quit();
111112
}
112113
else
113114
event->ignore();

0 commit comments

Comments
 (0)