Changed generic wxScrolledWindow -> wxGenericScrolledWindow
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9936 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -5,6 +5,22 @@
|
||||
#include "wx/gtk/scrolwin.h"
|
||||
#else
|
||||
#include "wx/generic/scrolwin.h"
|
||||
// For non-GTK+ platforms, always use wxGenericScrolledWindow
|
||||
class WXDLLEXPORT wxScrolledWindow: public wxGenericScrolledWindow
|
||||
{
|
||||
public:
|
||||
DECLARE_CLASS(wxScrolledWindow)
|
||||
wxScrolledWindow() {};
|
||||
wxScrolledWindow(wxWindow *parent,
|
||||
wxWindowID id = -1,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = wxScrolledWindowStyle,
|
||||
const wxString& name = wxPanelNameStr)
|
||||
{
|
||||
wxGenericScrolledWindow::Create(parent, id, pos, size, style, name);
|
||||
}
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user