From df16cb09b114debf781f229cd8762212d7584b0f Mon Sep 17 00:00:00 2001 From: Dimitri Schoolwerth Date: Mon, 3 Jan 2011 11:01:59 +0000 Subject: [PATCH] Fixed compilation of datectlg.cpp. Only including wx/datectrl.h does not always include wx/generic/datectrl.h, for example it does not for MSW non-Universal. As a result when compiling datectlg.cpp wxDatePickerCtrlGeneric is unknown and compilation fails. Fixed by including wx/generic/datectrl.h again (regression since r66524). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66532 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/datectlg.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/generic/datectlg.cpp b/src/generic/datectlg.cpp index a862229255..c5b7b84a53 100644 --- a/src/generic/datectlg.cpp +++ b/src/generic/datectlg.cpp @@ -38,6 +38,7 @@ #include "wx/combo.h" #include "wx/datectrl.h" +#include "wx/generic/datectrl.h" // ---------------------------------------------------------------------------- // constants -- 2.45.2