]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/joytest/joytest.cpp
Added the forgotten file txtstrm.tex
[wxWidgets.git] / samples / joytest / joytest.cpp
index 6ec7c6fa53cdeeca9569151a61b3d3479e0ce978..2709bc19ff5323010b5e9a09a9db6b06925aeb16 100644 (file)
@@ -52,10 +52,10 @@ bool MyApp::OnInit(void)
   // Create the main frame window
 
   frame = new MyFrame(NULL, "Joystick Demo", wxPoint(0, 0), wxSize(500, 400),
-   wxDEFAULT_FRAME | wxHSCROLL | wxVSCROLL);
+   wxDEFAULT_FRAME_STYLE | wxHSCROLL | wxVSCROLL);
 
   // Give it an icon (this is ignored in MDI mode: uses resources)
-#ifdef __WINDOWS__
+#ifdef __WXMSW__
   frame->SetIcon(wxIcon("joyicon"));
 #endif
 #ifdef __X__
@@ -164,8 +164,3 @@ void MyFrame::OnActivate(wxActivateEvent& event)
   if (event.GetActive() && canvas)
     canvas->SetFocus();
 }
-
-bool MyFrame::OnClose(void)
-{
-  return TRUE;
-}
\ No newline at end of file