Changed wxArrayStringProperty default delimiter to comma. It should allow for better looking and more easily editable property values for common cases.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65424 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli
2010-08-26 13:51:45 +00:00
parent 6f631217a9
commit aae9e5bd56
3 changed files with 6 additions and 2 deletions

View File

@@ -2342,7 +2342,7 @@ wxArrayStringProperty::wxArrayStringProperty( const wxString& label,
const wxArrayString& array )
: wxPGProperty(label,name)
{
m_delimiter = '"';
m_delimiter = ',';
SetValue( array );
}