]> Shamusworld >> Repos - ttedit/blobdiff - src/ttedit.h
Fix zoom to zoom in/out from the center.
[ttedit] / src / ttedit.h
old mode 100755 (executable)
new mode 100644 (file)
index 3adf6e8..482b6ac
@@ -8,19 +8,20 @@
 #ifndef __TTEDIT_H__
 #define __TTEDIT_H__
 
-//Hrm. uh??? I thought this wasn't the way to do this stuff...???
-#include <QtGui>
+#include <QtWidgets>
 
 // Forward declarations
 class CharWindow;
+class MainWindow;
 
 class TTEdit: public QApplication
 {
        public:
-               TTEdit(int argc, char * argv[]);
+               TTEdit(int argc, char * argv[]);
 
        public:
                CharWindow * charWnd;
+               MainWindow * mainWindow;
 };
 
 #endif // __TTEDIT_H__