use wxTreeCtrl, not wxGenericTreeCtrl

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10233 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-05-19 11:57:32 +00:00
parent 4dfaa61e60
commit af9083592b

View File

@@ -15,12 +15,12 @@
#define _PROPEDIT_H_ #define _PROPEDIT_H_
#include "wx/panel.h" #include "wx/panel.h"
#include "wx/generic/treectlg.h" #include "wx/treectrl.h"
#include "nodesdb.h" #include "nodesdb.h"
#include "propframe.h" #include "propframe.h"
class WXDLLEXPORT wxXmlNode; class WXDLLEXPORT wxXmlNode;
class WXDLLEXPORT wxGenericTreeCtrl; class WXDLLEXPORT wxTreeCtrl;
class WXDLLEXPORT wxTextCtrl; class WXDLLEXPORT wxTextCtrl;
@@ -61,7 +61,7 @@ class PropEditCtrl : public wxPanel
PropertiesFrame *m_PropFrame; PropertiesFrame *m_PropFrame;
bool m_Created; bool m_Created;
wxGenericTreeCtrl *m_TreeCtrl; wxTreeCtrl *m_TreeCtrl;
wxTreeItemId m_TreeItem; wxTreeItemId m_TreeItem;
wxWindow *m_TheCtrl; wxWindow *m_TheCtrl;
PropertyInfo *m_PropInfo; PropertyInfo *m_PropInfo;