]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/app.h
Fixed problem with crashing on 64-bit Linux & possibly others.
[virtualjaguar] / src / gui / app.h
index 2b57845e5b1687c065f9fdc29e84d1815f97e2eb..664ce67a835834ffa5d009c74b4dcc7834f15a9a 100644 (file)
@@ -1,7 +1,7 @@
 //
 // app.h: Header file
 //
-// by James L. Hammons
+// by James Hammons
 // (C) 2009 Underground Software
 //
 
@@ -17,14 +17,19 @@ class MainWin;
 class App: public QApplication
 {
        public:
-               App(int argc, char * argv[]);
+               App(int argc, char * argv[]);
 
        private:
                MainWin * mainWindow;
+//             bool noUntunedTankPlease;
 
        // Globally accessible stuff goes here...
        // Although... Globally accessible stuff should go into settings.cpp...
+       // Unless it's stuff related to the GUI, then it should go here. :-P
+       // And we make these class variables so we don't have to muck around with
+       // chasing down instances of the object...
 //     public:
+//             static QString filenameToRun;
 };
 
 #endif // __APP_H__