implemented (untested) work around for wxScrolledWindow painting bug

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-08-13 15:42:29 +00:00
parent 88b792af94
commit 349efbaa89
3 changed files with 104 additions and 29 deletions

View File

@@ -66,8 +66,14 @@ class WXDLLEXPORT wxGenericScrolledWindow : public wxPanel,
virtual void PrepareDC(wxDC& dc) { DoPrepareDC(dc); }
protected:
// this is needed for wxEVT_PAINT processing hack described in
// wxScrollHelperEvtHandler::ProcessEvent()
void OnPaint(wxPaintEvent& event);
private:
DECLARE_ABSTRACT_CLASS(wxGenericScrolledWindow)
DECLARE_EVENT_TABLE()
};
#ifdef __VISUALC__