diff src/main.cpp @ 6:99d612849255

v0.3
author pyon@macmini
date Sat, 08 Oct 2011 17:00:33 +0900
parents 1ea4f7981ff5
children bfa0800f1176
line wrap: on
line diff
--- a/src/main.cpp	Thu Oct 06 20:27:54 2011 +0900
+++ b/src/main.cpp	Sat Oct 08 17:00:33 2011 +0900
@@ -1,10 +1,11 @@
 // Filename   : main.cpp
-// Last Change: 02-Oct-2011.
+// Last Change: 08-Oct-2011.
 //
 
 #include "common.h"
 #include "main.h"
 #include "myframe.h"
+#include "testframe.cpp"
 
 IMPLEMENT_APP(MyApp)
 
@@ -25,10 +26,15 @@
 
     ConfInit();
 
+    /*
     MyFrame *mainframe = new MyFrame( NULL, ID_MAIN, wxT("A Mover") );
     mainframe->SetSize( rect );
     mainframe->SetMinSize( wxSize( 580, 680 ) );
     mainframe->Show(true);
+    */
+    TestFrame *tf = new TestFrame( NULL, ID_TEST, wxT("A Test") );
+    tf->Show(true);
+
 
     return true;
 }