]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/about.h
Fixed IMASK access in DSP & GPU, more CPU browser refinements.
[virtualjaguar] / src / gui / about.h
index 7397e3b8a9679f185eac1b6ad909d248627f0dac..9c5f086bdace2a2b7fd37fc6cd1e4d321ba4f0e3 100644 (file)
@@ -1,7 +1,7 @@
 //
 // about.h: Credits where credits are due ;-)
 //
-// by James L. Hammons
+// by James Hammons
 // (C) 2010 Underground Software
 //
 
@@ -15,6 +15,9 @@ class AboutWindow: public QWidget
        public:
                AboutWindow(QWidget * parent = 0);
 
+       protected:
+               void keyPressEvent(QKeyEvent *);
+
        private:
                QVBoxLayout * layout;
                QLabel * text;
@@ -22,21 +25,3 @@ class AboutWindow: public QWidget
 };
 
 #endif // __ABOUT_H__
-
-
-#if 0
-class AboutWindow : public QbWindow {
-  Q_OBJECT
-
-public:
-  QVBoxLayout *layout;
-  struct Logo : public QWidget {
-    void paintEvent(QPaintEvent*);
-  } *logo;
-  QLabel *info;
-
-  AboutWindow();
-};
-
-extern AboutWindow *aboutWindow;
-#endif