]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed wxPropertyGridInterface::SetPropertyValues() documentation
authorJaakko Salli <jaakko.salli@dnainternet.net>
Mon, 20 Jul 2009 15:06:04 +0000 (15:06 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Mon, 20 Jul 2009 15:06:04 +0000 (15:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61472 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/propgrid/propgridiface.h
interface/wx/propgrid/propgridiface.h

index 06712abf3500fcaa78e8a476141607192b3dd557..88474fd5695c2571f5f380fa617c61340b016c56 100644 (file)
@@ -1030,9 +1030,8 @@ public:
     }
 
 #ifndef SWIG
-    /** Sets various property values from a list of wxVariants. If property with
-        name is missing from the grid, new property is created under given
-        default category (or root if omitted).
+    /**
+        Sets property values from a list of wxVariants.
     */
     void SetPropertyValues( const wxVariantList& list,
                             wxPGPropArg defaultCategory = wxNullProperty )
@@ -1043,6 +1042,9 @@ public:
         m_pState->DoSetPropertyValues(list, p);
     }
 
+    /**
+        Sets property values from a list of wxVariants.
+    */
     void SetPropertyValues( const wxVariant& list,
                             wxPGPropArg defaultCategory = wxNullProperty )
     {
index 4303403a131df87374a77944934ac626156e4193..39375cb6a16fb186e94c6a3b210d848d72b42bb9 100644 (file)
@@ -792,13 +792,14 @@ public:
     void SetPropertyValueUnspecified( wxPGPropArg id );
 
     /**
-        Sets various property values from a list of wxVariants. If property with
-        name is missing from the grid, new property is created under given
-        default category (or root if omitted).
+        Sets property values from a list of wxVariants.
     */
     void SetPropertyValues( const wxVariantList& list,
                             wxPGPropArg defaultCategory = wxNullProperty );
 
+    /**
+        Sets property values from a list of wxVariants.
+    */
     void SetPropertyValues( const wxVariant& list,
                             wxPGPropArg defaultCategory = wxNullProperty );