wxProperty* prop = GetProperty(name);
if(prop){
prop->SetValue(value);
- return true;
+ return TRUE;
}else{
- return false;
+ return FALSE;
}
}
void wxPropertySheet::RemoveProperty(wxString name)
}
bool wxPropertySheet::HasProperty(wxString name)
{
- return (GetProperty(name)?true:false);
+ return (GetProperty(name)?TRUE:FALSE);
}
// Clear all properties
void wxPropertySheet::Clear(void)