Various interface corrections

This commit is contained in:
Robin Dunn
2019-07-31 12:18:55 -07:00
parent a6b92cb313
commit cd2e3dd2cf
3 changed files with 3 additions and 4 deletions

View File

@@ -571,7 +571,7 @@ public:
Note that if SetWindow() had been called with an object not deriving Note that if SetWindow() had been called with an object not deriving
from wxControl, this method will return @NULL. from wxControl, this method will return @NULL.
*/ */
wxControl* GetControl() const; wxControl* GetControl();
/** /**
Set the wxControl that will be used by this cell editor for editing the Set the wxControl that will be used by this cell editor for editing the

View File

@@ -581,6 +581,7 @@ public:
*/ */
virtual bool SendAutoScrollEvents(wxScrollWinEvent& event) const; virtual bool SendAutoScrollEvents(wxScrollWinEvent& event) const;
protected:
/** /**
This method can be overridden in a derived class to prevent scrolling This method can be overridden in a derived class to prevent scrolling
the child window into view automatically when it gets focus. the child window into view automatically when it gets focus.
@@ -593,9 +594,8 @@ public:
@since 3.1.3 @since 3.1.3
*/ */
virtual bool ShouldScrollToChildOnFocus(wxWindow* child) virtual bool ShouldScrollToChildOnFocus(wxWindow* child);
protected:
/** /**
Function which must be overridden to implement the size available for Function which must be overridden to implement the size available for
the scroll target for the given size of the main window. the scroll target for the given size of the main window.

View File

@@ -208,7 +208,6 @@ public:
class wxTimerEvent : public wxEvent class wxTimerEvent : public wxEvent
{ {
public: public:
wxTimerEvent();
wxTimerEvent(wxTimer& timer); wxTimerEvent(wxTimer& timer);
/** /**