Minor documentation fixes to wxHelpController.

Fix the methods signatures to match the real ones.

Closes #14007.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70648 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-02-20 21:56:42 +00:00
parent 1f165e7432
commit 5c54f4e9c8

View File

@@ -153,8 +153,8 @@ public:
@param newFrameEachTime @param newFrameEachTime
@true if a new frame is drawn with each invocation. @true if a new frame is drawn with each invocation.
*/ */
virtual wxFrame* GetFrameParameters(const wxSize* size = NULL, virtual wxFrame* GetFrameParameters(wxSize* size = NULL,
const wxPoint* pos = NULL, wxPoint* pos = NULL,
bool* newFrameEachTime = NULL); bool* newFrameEachTime = NULL);
/** /**
@@ -211,7 +211,7 @@ public:
Overridable member called when this application's viewer is quit by the user. Overridable member called when this application's viewer is quit by the user.
This does not work for all help controllers. This does not work for all help controllers.
*/ */
virtual bool OnQuit(); virtual void OnQuit();
/** /**
If the viewer is running, quits it by disconnecting. If the viewer is running, quits it by disconnecting.