From 880928715740eb0c2cdabe2cd367a98a533e7548 Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Tue, 10 Oct 2006 06:53:08 +0000 Subject: [PATCH] Minor cleaning. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41858 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/animate/anitest.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/samples/animate/anitest.cpp b/samples/animate/anitest.cpp index 8f433e3556..b15193b813 100644 --- a/samples/animate/anitest.cpp +++ b/samples/animate/anitest.cpp @@ -75,9 +75,7 @@ bool MyApp::OnInit() { // Create the main frame window - MyFrame* frame = new MyFrame((wxFrame *)NULL, -1, _T("Animation Demo"), - wxPoint(-1, -1), wxSize(500, 400), - wxDEFAULT_FRAME_STYLE); + MyFrame* frame = new MyFrame((wxFrame *)NULL, wxID_ANY, _T("Animation Demo")); // Give it an icon frame->SetIcon(wxICON(sample)); @@ -246,7 +244,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) -- 2.45.2