Fix setting wxPG_ARRAY_DELIMITER attribute

This attribute is used only to set internal data member in wxArrayStringProperty and thus can be considered as a built-in attribute which doesn't have to be stored in the property's attribute store.
This commit is contained in:
Artur Wieczorek
2019-04-22 11:19:13 +02:00
parent c96495d3be
commit 36285e7fb8
2 changed files with 5 additions and 5 deletions

View File

@@ -2923,9 +2923,9 @@ bool wxArrayStringProperty::DoSetAttribute( const wxString& name, wxVariant& val
{
m_delimiter = value.GetChar();
GenerateValueAsString();
return false;
return true;
}
return true;
return false;
}
// -----------------------------------------------------------------------