- wxDynamicProperty__ *prop;
- prop = m_data->m_properties;
- while (prop)
- {
- if (!strcmp(prop->name.c_str(), propertyName))
- {
- prop->value = value;
- return;
- }
- prop = prop->next;
- }
- prop = new wxDynamicProperty__;
- prop->name = propertyName;
- prop->value = value;
- prop->next = m_data->m_properties;
- m_data->m_properties = prop;
-// m_data->m_properties[propertyName] = value ;