]> git.saurik.com Git - wxWidgets.git/commitdiff
Added missing costructor
authorRobin Dunn <robin@alldunn.com>
Sat, 9 Oct 1999 07:10:26 +0000 (07:10 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 9 Oct 1999 07:10:26 +0000 (07:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3900 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/gridg.h

index 943f84650885e706264f9c334b48c322053c5235..9e0278cfabc00280e92fe2dd15192e97b5921be6 100644 (file)
@@ -352,6 +352,12 @@ public:
         : wxGenericGrid(parent, x, y, width, height, style, name)
         {
         }
+    wxGrid(wxWindow *parent, wxWindowID id, const wxPoint& pos,
+           const wxSize& size, long style = 0, const wxString& name = "grid")
+        : wxGenericGrid(parent, id, pos, size, style, name)
+        {
+        }
+
 };
 
 class WXDLLEXPORT wxGridEvent : public wxCommandEvent