Skip to content

Commit 81486e7

Browse files
committed
Fix crash on Windows
1 parent 32b3269 commit 81486e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Interface/Application/SCIRunMainWindow.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ void SCIRunMainWindow::setupQuitAfterExecute()
440440
void SCIRunMainWindow::exitApplication(int code)
441441
{
442442
close();
443-
/*qApp->*/exit(code);
443+
qApp->exit(code);
444444
}
445445

446446
void SCIRunMainWindow::quit()

0 commit comments

Comments
 (0)