]> git.saurik.com Git - wxWidgets.git/commitdiff
Changed wxArrayStringProperty default delimiter to comma. It should allow for better...
authorJaakko Salli <jaakko.salli@dnainternet.net>
Thu, 26 Aug 2010 13:51:45 +0000 (13:51 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Thu, 26 Aug 2010 13:51:45 +0000 (13:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65424 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/doxygen/overviews/propgrid.h
interface/wx/propgrid/property.h
src/propgrid/props.cpp

index 13cf4353323a7533d694a06c0b030c76917c339d..03a232e5dc243cc2ade582d6d67ccd8dd3c02dd0 100644 (file)
@@ -1020,6 +1020,9 @@ without warnings or errors.
     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.
index d234e78fbb148f771c71b1c76460dd5f24e27bab..e2bbb158ec33710188ef7b0e006f643a9d2a57e6 100644 (file)
@@ -485,7 +485,8 @@ wxPG_PROP_BEING_DELETED             = 0x00200000
 
     @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
 
index 9a4c87437466a3315864b5ce604a21b64538f737..0cb64112b548389353ef23d736865c3b46ad8fbf 100644 (file)
@@ -2342,7 +2342,7 @@ wxArrayStringProperty::wxArrayStringProperty( const wxString& label,
                                                         const wxArrayString& array )
     : wxPGProperty(label,name)
 {
-    m_delimiter = '"';
+    m_delimiter = ',';
     SetValue( array );
 }