X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fttedit.cpp;fp=src%2Fttedit.cpp;h=62417b5fd010ff88c20f6bfed5a2e60ecdd33856;hb=0cdf0ebfb4b788156b8eb2c2acadd5f95fe5be26;hp=a657cad17a48bb10d259299b5ad786b1b68aadd3;hpb=38fb522026b16fb83f49e2b2f32884ffaca177dd;p=ttedit diff --git a/src/ttedit.cpp b/src/ttedit.cpp index a657cad..62417b5 100755 --- a/src/ttedit.cpp +++ b/src/ttedit.cpp @@ -16,33 +16,13 @@ // JLH 03/05/2009 Initial conversion from wxWidgets to Qt // -// FIXED: -// -// - Fix problem with tool palette not getting focus 1st time it's called up [DONE] -// - Split out windows/classes defined here into their own files [DONE] -// -// STILL TO BE DONE: -// -// - Fix bug in Glyphpoints when dragging on an empty canvas or loading a font -// - Fix scrolling, zooming, settings (ini) -// - Finish conversion to wxWidgets for cross-platform portability -// - Fix problem with owned window causing main window refresh problems -// (ironically enough, it doesn't seem to be a problem anymore...) -// - -// Uncomment this for debugging... -//#define DEBUG -//#define DEBUGFOO // Various tool debugging... -//#define DEBUGTP // Toolpalette debugging... - #include "ttedit.h" #include #include "ttemainwindow.h" -//#include "charwindow.h" // Main app constructor--we stick globally accessible stuff here... -TTEdit::TTEdit(int argc, char * argv[]): QApplication(argc, argv), charWnd(NULL) +TTEdit::TTEdit(int & argc, char * argv[]): QApplication(argc, argv), charWnd(NULL) { mainWindow = new TTEMainWindow; //printf("mainWindow.show();\n"); @@ -63,4 +43,3 @@ int main(int argc, char * argv[]) //printf("return app.exec();\n"); return app.exec(); } -