bug fixes for using wxTransientPopupWindow and wxDP_ALLOWNONE support from Andreas Pflug

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31984 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-02-13 12:44:14 +00:00
parent c7ff293b42
commit 1721a8c028
3 changed files with 168 additions and 102 deletions

View File

@@ -35,7 +35,11 @@ enum
// always show century in the default date display (otherwise it depends on
// the system date format which may include the century or not)
wxDP_SHOWCENTURY = 4
wxDP_SHOWCENTURY = 4,
// allow not having any valid date in the control (by default it always has
// some date, today initially if no valid date specified in ctor)
wxDP_ALLOWNONE = 8
};
// ----------------------------------------------------------------------------