compilation fix after wxScrollHelperNative renaming to wxScrollHelper

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57532 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2008-12-24 17:13:20 +00:00
parent 29e1398fa0
commit 938161a6a4

View File

@ -380,7 +380,7 @@ WX_DECLARE_LIST_WITH_DECL(wxDataViewColumn, wxDataViewColumnList,
class WXDLLIMPEXP_ADV); class WXDLLIMPEXP_ADV);
class WXDLLIMPEXP_ADV wxDataViewCtrl : public wxDataViewCtrlBase, class WXDLLIMPEXP_ADV wxDataViewCtrl : public wxDataViewCtrlBase,
public wxScrollHelperNative public wxScrollHelper
{ {
friend class wxDataViewMainWindow; friend class wxDataViewMainWindow;
friend class wxDataViewHeaderWindowBase; friend class wxDataViewHeaderWindowBase;
@ -389,7 +389,7 @@ class WXDLLIMPEXP_ADV wxDataViewCtrl: public wxDataViewCtrlBase,
friend class wxDataViewColumn; friend class wxDataViewColumn;
public: public:
wxDataViewCtrl() : wxScrollHelperNative(this) wxDataViewCtrl() : wxScrollHelper(this)
{ {
Init(); Init();
} }
@ -398,7 +398,7 @@ public:
const wxPoint& pos = wxDefaultPosition, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0, const wxSize& size = wxDefaultSize, long style = 0,
const wxValidator& validator = wxDefaultValidator ) const wxValidator& validator = wxDefaultValidator )
: wxScrollHelperNative(this) : wxScrollHelper(this)
{ {
Create(parent, id, pos, size, style, validator ); Create(parent, id, pos, size, style, validator );
} }