]> Shamusworld >> Repos - ttedit/blobdiff - src/ttedit.cpp
Fix for bad mouse warping on single point selection.
[ttedit] / src / ttedit.cpp
index 62417b5fd010ff88c20f6bfed5a2e60ecdd33856..46e994362cc29a78e90164fc329df9c499dce53a 100755 (executable)
@@ -6,7 +6,7 @@
 // JLH = James L. Hammons <jlhamm@acm.org>
 //
 // Who  When        What
-// ---  ----------  -------------------------------------------------------------
+// ---  ----------  -----------------------------------------------------------
 // JLH  04/10/2002  Created this file
 // JLH  05/10/2004  Translated file from ASM to CPP
 // JLH  05/14/2004  Added rudimentary editing capability to tool palette tools
 
 #include "ttedit.h"
 #include <QApplication>
-#include "ttemainwindow.h"
+#include "mainwindow.h"
 
 // Main app constructor--we stick globally accessible stuff here...
 
 TTEdit::TTEdit(int & argc, char * argv[]): QApplication(argc, argv), charWnd(NULL)
 {
-       mainWindow = new TTEMainWindow;
+       mainWindow = new MainWindow;
 //printf("mainWindow.show();\n");
        mainWindow->show();
 }