]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/propgrid/property.h
Added wxIsPod<>. Use it in wxAny instead of wxIsMovable<>.
[wxWidgets.git] / include / wx / propgrid / property.h
index ab4aae0f124662472671be4ce8fdf8e002e39192..f4ddde3f80dacc6c88d41a90caf3b92c54f12f99 100644 (file)
@@ -1858,7 +1858,7 @@ public:
             By default changes are applied recursively. Set this paramter
             wxPG_DONT_RECURSE to prevent this.
     */
-    inline bool Hide( bool hide, int flags = wxPG_RECURSE );
+    bool Hide( bool hide, int flags = wxPG_RECURSE );
 
     bool IsExpanded() const
         { return (!(m_flags & wxPG_PROP_COLLAPSED) && GetChildCount()); }
@@ -2141,7 +2141,7 @@ public:
         @remarks This operation deselects the property and clears its
                  value.
     */
-    bool SetChoices( wxPGChoices& choices );
+    bool SetChoices( const wxPGChoices& choices );
 
     /** Set max length of text in text editor.
     */
@@ -2328,6 +2328,8 @@ protected:
                                   const wxVariantList* valueOverrides = NULL,
                                   wxPGHashMapS2S* childResults = NULL ) const;
 
+    bool DoHide( bool hide, int flags );
+
     void DoSetName(const wxString& str) { m_name = str; }
 
     /** Deletes all sub-properties. */