Keep getting access violation exceptions

This commit is contained in:
andreja6
2018-10-22 22:01:46 -07:00
parent c71dcb8a91
commit 268a0cd2ee
5 changed files with 16 additions and 14 deletions

View File

@@ -5,8 +5,8 @@ class Property
{
public:
void(*callbackFuncOnChange)(PROPGRIDITEM);
PROPGRIDITEM item;
Property(PROPGRIDITEM item, void(*onPropUpdate)(PROPGRIDITEM));
PROPGRIDITEM * item;
Property(PROPGRIDITEM * item, void(*onPropUpdate)(PROPGRIDITEM));
~Property(void);
void updateProperty(PROPGRIDITEM);
};