]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/propgrid/property.h
fix wxPowerEvent, wxRichTextEvent and wxWizardEvent so that they pass the runtime...
[wxWidgets.git] / include / wx / propgrid / property.h
index 7c329b7d1c4fca1d7980a27f773f37431cc0d586..28535bb6445768c83a752bf33298726378ed12da 100644 (file)
@@ -1443,6 +1443,11 @@ public:
         return false;
     }
 
+    /**
+        Deletes children of the property.
+    */
+    void DeleteChildren();
+
     /**
         Removes entry from property's wxPGChoices and editor control (if it is
         active).
@@ -1545,8 +1550,6 @@ public:
     */
     wxDEPRECATED( wxString GetValueString( int argFlags = 0 ) const );
 
-    void UpdateControl( wxWindow* primary );
-
     /**
         Returns wxPGCell of given column.
     */
@@ -2073,9 +2076,6 @@ public:
     /** Returns index of given child property. */
     int Index( const wxPGProperty* p ) const;
 
-    /** Deletes all sub-properties. */
-    void Empty();
-
     // Puts correct indexes to children
     void FixIndicesOfChildren( unsigned int starthere = 0 );
 
@@ -2205,6 +2205,9 @@ protected:
 
     void DoSetName(const wxString& str) { m_name = str; }
 
+    /** Deletes all sub-properties. */
+    void Empty();
+
     void InitAfterAdded( wxPropertyGridPageState* pageState,
                          wxPropertyGrid* propgrid );
 
@@ -2219,6 +2222,8 @@ protected:
     // moved to it.
     void SubPropsChanged( int oldSelInd = -1 );
 
+    void UpdateControl( wxWindow* editorWnd );
+
     int GetY2( int lh ) const;
 
     wxString                    m_label;