]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/help.h
Fix for bad branch handling in OP.
[virtualjaguar] / src / gui / help.h
index 7b4b48e1b4e2c5ce7986906c9003d05801db48eb..511a359cf79398f3ddab213b077d83ccdc9fbad3 100644 (file)
@@ -1,25 +1,26 @@
 //
 // help.h: Built-in help system
 //
-// by James L. Hammons
+// by James Hammons
 // (C) 2011 Underground Software
 //
 
 #ifndef __HELP_H__
 #define __HELP_H__
 
-#include <QtGui>
+#include <QtWidgets>
 
 class HelpWindow: public QWidget
 {
        public:
                HelpWindow(QWidget * parent = 0);
 
+       protected:
+               void keyPressEvent(QKeyEvent *);
+
        private:
                QVBoxLayout * layout;
                QTextBrowser * text;
-//             QLabel * text;
-//             QLabel * image;
 };
 
 #endif // __HELP_H__