]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/datectrl.cpp
wxFopen arg fixes
[wxWidgets.git] / src / msw / datectrl.cpp
index f487d33eeb80e4dab9d4f2971a55916c651a8b5e..a25d94071af3fb464437218df423d60c615ac116 100644 (file)
 #include "wx/msw/wrapcctl.h"
 #include "wx/msw/private.h"
 
+#if defined(__GNUWIN32__) && ! wxCHECK_W32API_VERSION( 2, 4 )
+typedef struct tagNMDATETIMECHANGE
+{
+    NMHDR       nmhdr;
+    DWORD       dwFlags;
+    SYSTEMTIME  st;
+} NMDATETIMECHANGE, FAR * LPNMDATETIMECHANGE;
+#endif
+
 // ============================================================================
 // implementation
 // ============================================================================
@@ -127,7 +136,7 @@ wxDatePickerCtrl::Create(wxWindow *parent,
         return false;
 
     // create the native control
-    if ( !MSWCreateControl(DATETIMEPICK_CLASS, _T(""), pos, size) )
+    if ( !MSWCreateControl(DATETIMEPICK_CLASS, wxEmptyString, pos, size) )
         return false;
 
     if ( dt.IsValid() )