]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/imaglist.h
fixed a missing backslash
[wxWidgets.git] / include / wx / generic / imaglist.h
index 3df017802e398f1ee452fa1651ef0e1fed96c009..2a0893a3ac18b073195c18c390885d2b35167ad9 100644 (file)
@@ -47,7 +47,7 @@ class wxImageList: public wxObject
   public:
 
     wxImageList::wxImageList() { }
-    wxImageList(int width, int height, bool mask = TRUE, int initialCount = 1);
+    wxImageList( int width, int height, bool mask = TRUE, int initialCount = 1 );
     ~wxImageList();
     bool Create();
     int GetImageCount() const;
@@ -57,11 +57,13 @@ class wxImageList: public wxObject
     bool RemoveAll();
     bool GetSize( int index, int &width, int &height ) const;
     bool Draw(int index, wxDC& dc, int x, int y,
-      int flags = wxIMAGELIST_DRAW_NORMAL, const bool solidBackground = FALSE );
-    
+      int flags = wxIMAGELIST_DRAW_NORMAL, bool solidBackground = FALSE );
+
   private:
 
     wxList  m_images;
+    int     m_width;
+    int     m_height;
 };
 
 #endif  // __IMAGELISTH_G__