X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae8351fc61c11718b80630465967408d13fc226a..5a224901b8ede55e1db9980f0fcaf7d2cb49285f:/utils/dialoged/src/edtree.h?ds=inline diff --git a/utils/dialoged/src/edtree.h b/utils/dialoged/src/edtree.h index 3928c5aa7d..21b1d5e922 100644 --- a/utils/dialoged/src/edtree.h +++ b/utils/dialoged/src/edtree.h @@ -12,24 +12,24 @@ #ifndef _EDTREE_H_ #define _EDTREE_H_ -#include +#include "wx/treectrl.h" class wxResourceEditorProjectTree: public wxTreeCtrl { public: wxResourceEditorProjectTree(wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style = wxTR_HAS_BUTTONS); - + void LeftDClick(wxMouseEvent& event); void OnSelChanged(wxTreeEvent& event); - + inline void SetInvalid(bool invalid) { m_invalid = invalid; } - + protected: bool m_invalid; // While TRUE, don't respond to selections etc. - -DECLARE_EVENT_TABLE() - + + DECLARE_EVENT_TABLE() + }; #endif