From 0afdfcaca507481539bd7d80f41e63491dafec01 Mon Sep 17 00:00:00 2001 From: Dimitri Schoolwerth Date: Mon, 5 Jul 2004 19:29:18 +0000 Subject: [PATCH] removed tab character; replaced -1 with wxID_ANY git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28172 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/html/htmlctrl/htmlctrl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/html/htmlctrl/htmlctrl.cpp b/samples/html/htmlctrl/htmlctrl.cpp index f8fca45982..775db9ccad 100755 --- a/samples/html/htmlctrl/htmlctrl.cpp +++ b/samples/html/htmlctrl/htmlctrl.cpp @@ -188,7 +188,7 @@ MyFrame::MyFrame(const wxString& title) // Testing wxWebKitCtrl inside a panel #if 1 - wxPanel* panel = new wxPanel(this, -1); + wxPanel* panel = new wxPanel(this, wxID_ANY); wxBoxSizer* boxSizer = new wxBoxSizer(wxVERTICAL); panel->SetSizer(boxSizer); @@ -224,7 +224,7 @@ void MyFrame::OnStopButton(wxCommandEvent& myEvent){ } void MyFrame::OnReloadButton(wxCommandEvent& myEvent){ - mySafari->Reload(); + mySafari->Reload(); } void MyFrame::OnURLEnter(wxCommandEvent& myEvent){ -- 2.45.2