X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fapp.h;h=664ce67a835834ffa5d009c74b4dcc7834f15a9a;hb=c436dad60e34fb9da720a89db917eb4cf4e3a624;hp=9de170a7736900a177fea4351729369f3a6361cc;hpb=d9abe1a157bbd35e8b282927489b687f56048ce6;p=virtualjaguar diff --git a/src/gui/app.h b/src/gui/app.h index 9de170a..664ce67 100644 --- a/src/gui/app.h +++ b/src/gui/app.h @@ -1,7 +1,7 @@ // // app.h: Header file // -// by James L. Hammons +// by James Hammons // (C) 2009 Underground Software // @@ -17,7 +17,7 @@ class MainWin; class App: public QApplication { public: - App(int argc, char * argv[]); + App(int & argc, char * argv[]); private: MainWin * mainWindow; @@ -25,7 +25,11 @@ class App: public QApplication // 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__