Skip to content

Commit 39a7aa6

Browse files
authored
Merge pull request #112 from tobil4sk/fix/property-version-checks
Fix version checks for property types
2 parents e2c989d + bc30e43 commit 39a7aa6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/wx/widgets/PGPropertyValuesFlags.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package wx.widgets;
22

3-
#if (wxWidgetsVersion > version("3.2.4"))
3+
#if (wxWidgetsVersion > version("3.3.0"))
44

55
@:include("wx/propgrid/propgriddefs.h")
66
extern enum abstract PGPropertyValuesFlags(PGPropertyValuesFlagsImpl) {

src/wx/widgets/styles/PropertyGridAttributes.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package wx.widgets.styles;
33
// https://docs.wxwidgets.org/latest/property_8h.html#propgrid_property_attributes
44
@:headerCode("#include <wx/propgrid/propgrid.h>")
55
class PropertyGridAttributes {
6-
#if (wxWidgetsVersion < version("3.2.3"))
6+
#if (wxWidgetsVersion < version("3.3.0"))
77
public static var ATTR_HINT:String = untyped __cpp__("wxS(\"Hint\")");
88
public static var ATTR_MAX:String = untyped __cpp__("wxS(\"Max\")");
99
public static var ATTR_MIN:String = untyped __cpp__("wxS(\"Min\")");

0 commit comments

Comments
 (0)