git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65424
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
property's state since it never had any desired side-effects. ChangeFlag()
still exists for those who really need to achieve the same effect.
+ - wxArrayStringProperty default delimiter is now comma (','), and it can
+ be changed by setting the new "Delimiter" attribute.
+
@subsection propgrid_compat_propdev Property and Editor Sub-classing Changes
- Confusing custom property macros have been eliminated.
@subsection wxArrayStringProperty
- Allows editing of a list of strings in wxTextCtrl and in a separate dialog.
+ Allows editing of a list of strings in wxTextCtrl and in a separate
+ dialog. Supports "Delimiter" attribute, which defaults to comma (',').
@subsection wxDateProperty
const wxArrayString& array )
: wxPGProperty(label,name)
{
- m_delimiter = '"';
+ m_delimiter = ',';
SetValue( array );
}