]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/dialoged/src/edtree.h
Set the selection under Motif in wxChoiceDialog
[wxWidgets.git] / utils / dialoged / src / edtree.h
index 3928c5aa7d614e45c611de7c7c4fc54cf66a995f..21b1d5e922231a69277c53959ea55bfcd5f770a8 100644 (file)
 #ifndef _EDTREE_H_
 #define _EDTREE_H_
 
-#include <wx/treectrl.h>
+#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