do only what is necessary in SetScrollbars(), let the base class do the rest

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58773 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2009-02-08 20:51:44 +00:00
parent 51be4a55cf
commit 8aa40b04f8
2 changed files with 8 additions and 49 deletions

View File

@@ -18,6 +18,7 @@
class WXDLLIMPEXP_CORE wxScrollHelper : public wxScrollHelperBase
{
typedef wxScrollHelperBase base_type;
public:
// default ctor doesn't do anything
wxScrollHelper(wxWindow *win) : wxScrollHelperBase(win) { }
@@ -70,7 +71,6 @@ private:
int pixelsPerLine,
int *posOld);
private:
wxDECLARE_NO_COPY_CLASS(wxScrollHelper);
};