From 5f9ab82db280b0dd30eab650fd3b1c8da108aea6 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 12 May 2002 12:47:54 +0000 Subject: [PATCH] Don't use context id for context help since it doesn't seem to be working at present git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15531 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/help/demo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/help/demo.cpp b/samples/help/demo.cpp index f88a1650bc..7e8334038d 100644 --- a/samples/help/demo.cpp +++ b/samples/help/demo.cpp @@ -416,8 +416,8 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size) // a panel first - if there were several controls, it would allow us to // navigate between them from the keyboard wxPanel *panel = new wxPanel(this, 301, wxPoint(0, 0), wxSize(400, 200)); - //panel->SetHelpText(_("This panel just holds a static text control.")); - panel->SetHelpText(wxContextId(300)); + panel->SetHelpText(_("This panel just holds a static text control.")); + //panel->SetHelpText(wxContextId(300)); // and a static control whose parent is the panel wxStaticText* staticText = new wxStaticText(panel, 302, "Hello, world!", wxPoint(10, 10)); -- 2.47.2