compilation fix for wxGTK (missing header)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16482 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
c5bdc14fd6
commit
c010d6a985
@ -30,8 +30,13 @@
|
|||||||
#include "wx/html/helpctrl.h"
|
#include "wx/html/helpctrl.h"
|
||||||
#include "wx/busyinfo.h"
|
#include "wx/busyinfo.h"
|
||||||
|
|
||||||
|
#ifdef __WXGTK__
|
||||||
|
// for the hack in AddGrabIfNeeded()
|
||||||
|
#include "wx/dialog.h"
|
||||||
|
#endif // __WXGTK__
|
||||||
|
|
||||||
#if wxUSE_HELP
|
#if wxUSE_HELP
|
||||||
#include "wx/tipwin.h"
|
#include "wx/tipwin.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxHtmlHelpController, wxHelpControllerBase)
|
IMPLEMENT_DYNAMIC_CLASS(wxHtmlHelpController, wxHelpControllerBase)
|
||||||
@ -274,7 +279,7 @@ void wxHtmlHelpController::AddGrabIfNeeded()
|
|||||||
|
|
||||||
if (needGrab && m_helpFrame)
|
if (needGrab && m_helpFrame)
|
||||||
m_helpFrame->AddGrab();
|
m_helpFrame->AddGrab();
|
||||||
#endif
|
#endif // __WXGTK__
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxHtmlHelpController::Display(const wxString& x)
|
bool wxHtmlHelpController::Display(const wxString& x)
|
||||||
|
Loading…
Reference in New Issue
Block a user