]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/dialoged/src/edlist.h
use "..." instead of <...> for wx headers
[wxWidgets.git] / utils / dialoged / src / edlist.h
index 9777c0135509d3ec5c18c95c28be72828a9bab50..1122fcf7fa39583d2d9761e853163b00a823df84 100644 (file)
@@ -12,8 +12,8 @@
 #ifndef _EDLIST_H_
 #define _EDLIST_H_
 
-#include <wx/listctrl.h>
-#include <wx/imaglist.h>
+#include "wx/listctrl.h"
+#include "wx/imaglist.h"
 
 class wxResourceEditorControlList: public wxListCtrl
 {
@@ -21,15 +21,15 @@ public:
     wxResourceEditorControlList(wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size,
         long style = wxLC_SMALL_ICON|wxLC_AUTOARRANGE|wxLC_SINGLE_SEL);
     ~wxResourceEditorControlList();
-
+    
     // Load icons and add to the list
     void Initialize();
-
+    
     // Get selection, or -1
     long GetSelection() const;
-
-DECLARE_EVENT_TABLE()
-
+    
+    DECLARE_EVENT_TABLE()
+        
 protected:
     wxImageList m_imageList;
 };