#9500 Fix DLGITEMTEMPLATE.id type

This commit is contained in:
fefacio
2026-08-13 18:07:55 -03:00
committed by Ryan Kurtz
parent 1e641d0c6e
commit dc4d4571db

View File

@@ -340,7 +340,7 @@ public class DialogResourceDataType extends DynamicDataType {
struct.add(ShortDataType.dataType, "y", "y-coordinate of upper-left corner of control");
struct.add(ShortDataType.dataType, "cx", "width of control");
struct.add(ShortDataType.dataType, "cy", "height of control");
struct.add(DWordDataType.dataType, "id", "control identifier");
struct.add(WordDataType.dataType, "id", "control identifier");
return struct;
}