]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/animate/anitest.cpp
use window's font instead of the default one in wxStatusBar
[wxWidgets.git] / samples / animate / anitest.cpp
index 8f433e3556222fcfb85e9adb4c05607038b38c17..551a36aa4d875e03c80ef7e90902d8992db4d736 100644 (file)
@@ -75,8 +75,8 @@ bool MyApp::OnInit()
 {
     // Create the main frame window
 
-    MyFrame* frame = new MyFrame((wxFrame *)NULL, -1, _T("Animation Demo"),
-                        wxPoint(-1, -1), wxSize(500, 400),
+    MyFrame* frame = new MyFrame((wxFrame *)NULL, wxID_ANY, _T("Animation Demo"),
+                        wxDefaultPosition, wxSize(500, 400),
                         wxDEFAULT_FRAME_STYLE);
 
     // Give it an icon
@@ -246,7 +246,7 @@ END_EVENT_TABLE()
 
 // Define a constructor for my canvas
 MyCanvas::MyCanvas(wxWindow *parent, const wxPoint& pos, const wxSize& size)
-        : wxScrolledWindow(parent, -1, pos, size,
+        : wxScrolledWindow(parent, wxID_ANY, pos, size,
                            wxSUNKEN_BORDER |
                            wxNO_FULL_REPAINT_ON_RESIZE |
                            wxVSCROLL | wxHSCROLL)