]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/dialoged/src/edtree.h
added missing const
[wxWidgets.git] / utils / dialoged / src / edtree.h
index 3928c5aa7d614e45c611de7c7c4fc54cf66a995f..37b05dcd5972a28955d0ca07c60952e7d28a0bdf 100644 (file)
@@ -19,17 +19,17 @@ 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