../win/Qt/qt_main.cpp: In member function ‘virtual void nethack_qt_::NetHackQtMainWindow::closeEvent(QCloseEvent*)’:
../win/Qt/qt_main.cpp:1377:9: warning: variable ‘ok’ set but not used [-Wunused-but-set-variable]
1377 | int ok = 0;
| ^~
// game window's Close button has been activated
void NetHackQtMainWindow::closeEvent(QCloseEvent *e UNUSED)
{
- int ok = 0;
+// int ok = 0;
if ( g.program_state.something_worth_saving ) {
/* this used to offer "Save" and "Cancel"
but cancel (ignoring the close attempt) won't work
break;
case 1:
// quit -- bypass the prompting preformed by done2()
- ok = 1;
+// ok = 1;
g.program_state.stopprint++;
::done(QUIT);
/*NOTREACHED*/
}
} else {
/* nothing worth saving; just close/quit */
- ok = 1;
+// ok = 1;
}
/* if !ok, we should try to continue, but we don't... */
u.uhp = -1;