X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/56c6fc01a9fe2266c64170af4f43eb0dcf3a7b0d..3358af0f8754020769c32f211cc9034f62716005:/include/wx/treectrl.h diff --git a/include/wx/treectrl.h b/include/wx/treectrl.h index 0a9c49c566..a8693594b3 100644 --- a/include/wx/treectrl.h +++ b/include/wx/treectrl.h @@ -24,7 +24,7 @@ #include "wx/treebase.h" #include "wx/textctrl.h" // wxTextCtrl::ms_classinfo used through CLASSINFO macro -class WXDLLEXPORT wxImageList; +class WXDLLIMPEXP_FWD_CORE wxImageList; // ---------------------------------------------------------------------------- // wxTreeCtrlBase @@ -290,13 +290,13 @@ public: // expand this item virtual void Expand(const wxTreeItemId& item) = 0; - // expand the item and all its childs and thats childs + // expand the item and all its children recursively void ExpandAllChildren(const wxTreeItemId& item); // expand all items void ExpandAll(); // collapse the item without removing its children virtual void Collapse(const wxTreeItemId& item) = 0; - // collapse the item and all its childs and thats childs + // collapse the item and all its children void CollapseAllChildren(const wxTreeItemId& item); // collapse all items void CollapseAll();