removed some default value for wxGrid compatibility ctor resolving ambiguity of writing wxGrid(this, -1)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6203 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1021,7 +1021,7 @@ public:
|
||||
//
|
||||
|
||||
wxGrid( wxWindow *parent,
|
||||
int x = -1, int y = -1, int w = -1, int h = -1,
|
||||
int x, int y, int w = -1, int h = -1,
|
||||
long style = 0,
|
||||
const wxString& name = wxPanelNameStr )
|
||||
: wxScrolledWindow( parent, -1, wxPoint(x,y), wxSize(w,h), style, name )
|
||||
|
Reference in New Issue
Block a user