projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Call CreateControl instead of CreateBase
[wxWidgets.git]
/
src
/
common
/
cshelp.cpp
diff --git
a/src/common/cshelp.cpp
b/src/common/cshelp.cpp
index a7da4a1cf5b9f07053cc1ffdfe2e7bdbd71619de..2ae62269b1fb6db4f7aa9163048a7747fe11456e 100644
(file)
--- a/
src/common/cshelp.cpp
+++ b/
src/common/cshelp.cpp
@@
-232,7
+232,7
@@
bool wxContextHelp::DispatchEvent(wxWindow* win, const wxPoint& pt)
while (subjectOfHelp && !eventProcessed)
{
wxHelpEvent helpEvent(wxEVT_HELP, subjectOfHelp->GetId(), pt) ;
- helpEvent.SetEventObject(
this
);
+ helpEvent.SetEventObject(
subjectOfHelp
);
eventProcessed = win->GetEventHandler()->ProcessEvent(helpEvent);