]> granicus.if.org Git - nethack/commitdiff
unused-but-set-variable warning in qt_main.cpp
authornhmall <nhmall@nethack.org>
Wed, 3 Feb 2021 20:31:57 +0000 (15:31 -0500)
committernhmall <nhmall@nethack.org>
Wed, 3 Feb 2021 20:33:30 +0000 (15:33 -0500)
../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;
      |         ^~

win/Qt/qt_main.cpp

index 6d692ea83dbc2f07d3fe9a2c54477c03fdb3dde8..8be7669aa07edba1ea13ec0e1077655c04a189a0 100644 (file)
@@ -1374,7 +1374,7 @@ void NetHackQtMainWindow::keyPressEvent(QKeyEvent* event)
 // 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
@@ -1389,7 +1389,7 @@ void NetHackQtMainWindow::closeEvent(QCloseEvent *e UNUSED)
             break;
         case 1:
             // quit -- bypass the prompting preformed by done2()
-            ok = 1;
+//            ok = 1;
             g.program_state.stopprint++;
             ::done(QUIT);
             /*NOTREACHED*/
@@ -1397,7 +1397,7 @@ void NetHackQtMainWindow::closeEvent(QCloseEvent *e UNUSED)
        }
     } 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;