From 46291feecd04a7a437a9c99b23b341327cc8e540 Mon Sep 17 00:00:00 2001 From: Jaakko Salli Date: Sat, 20 Mar 2010 14:08:34 +0000 Subject: [PATCH] Make wxPGVFBFlags an unsigned char define instead of wxByte typedef (easier time for wxPython bindings) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63727 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/propgrid/propgrid.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/wx/propgrid/propgrid.h b/include/wx/propgrid/propgrid.h index cda343f9f3..dc03aabf5c 100644 --- a/include/wx/propgrid/propgrid.h +++ b/include/wx/propgrid/propgrid.h @@ -403,7 +403,10 @@ wxPG_VFB_UNDEFINED = 0x80 /** @} */ -typedef wxByte wxPGVFBFlags; +// Having this as define instead of wxByte typedef makes things easier for +// wxPython bindings (ignoring and redefining it in SWIG interface file +// seemed rather tricky) +#define wxPGVFBFlags unsigned char /** wxPGValidationInfo -- 2.45.2