From 5e888f8eef3c72443a4d7c64255dafd1a78fd043 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 14 Apr 2006 21:02:54 +0000 Subject: [PATCH] don't use deprecated interface git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38727 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/html/widget/widget.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/samples/html/widget/widget.cpp b/samples/html/widget/widget.cpp index e51fe68f1d..7607fefdaf 100644 --- a/samples/html/widget/widget.cpp +++ b/samples/html/widget/widget.cpp @@ -47,8 +47,15 @@ TAG_HANDLER_PROC(tag) if (tag.HasParam(wxT("FLOAT"))) fl = ax; - wnd = new wxTextCtrl(m_WParser->GetWindow(), wxID_ANY, tag.GetParam(wxT("NAME")), - wxPoint(0,0), wxSize(ax, ay), wxTE_MULTILINE); + wnd = new wxTextCtrl + ( + m_WParser->GetWindowInterface()->GetHTMLWindow(), + wxID_ANY, + tag.GetParam(wxT("NAME")), + wxPoint(0,0), + wxSize(ax, ay), + wxTE_MULTILINE + ); wnd->Show(true); -- 2.47.2