Made instances call parent function on properties, Deselecting everything opens Datamodel in the property grid

Instances now call the parent method after setting/getting properties,
Made delete no longer delete workspace
This commit is contained in:
andreja6
2018-10-24 09:55:49 -07:00
parent 1159be9b1b
commit 70fba67b6e
3 changed files with 27 additions and 26 deletions

View File

@@ -45,7 +45,7 @@ void Instance::PropUpdate(LPPROPGRIDITEM &item)
{
if(strcmp(item->lpszPropName, "Name") == 0)
{
name = item->lpCurValue;
name = (LPSTR)item->lpCurValue;
}
}