]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/calctrl.cpp
tried to fix compilation with Watcom 11 (should fix the bug 651492)
[wxWidgets.git] / src / generic / calctrl.cpp
index 61eeb947082ae83538ecf44c092a60f9c17125ef..b1e33170914cd3c5e911ddb02a9caa1130e498bd 100644 (file)
@@ -155,6 +155,19 @@ wxYearSpinCtrl::wxYearSpinCtrl(wxCalendarCtrl *cal)
 // wxCalendarCtrl
 // ----------------------------------------------------------------------------
 
+wxCalendarCtrl::wxCalendarCtrl(wxWindow *parent,
+                   wxWindowID id,
+                   const wxDateTime& date,
+                   const wxPoint& pos,
+                   const wxSize& size,
+                   long style,
+                   const wxString& name)
+{
+    Init();
+    
+    (void)Create(parent, id, date, pos, size, style, name);
+}
+
 void wxCalendarCtrl::Init()
 {
     m_comboMonth = NULL;