]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/statbmp.h
applied patch 410892 (wxCopyFile uses ::CopyFile under Win32, has overwrite parameter)
[wxWidgets.git] / include / wx / msw / statbmp.h
index 3715b09f7ce6705e0fc075286eda922bd62b37c5..fb294bbc600f83c42e3a18c3253bd36afddfcb57 100644 (file)
@@ -51,8 +51,8 @@ public:
 
     virtual ~wxStaticBitmap() { Free(); }
 
-    void SetIcon(const wxIcon& icon) { SetImage(icon); }
-    void SetBitmap(const wxBitmap& bitmap) { SetImage(bitmap); }
+    void SetIcon(const wxIcon& icon) { SetImage(&icon); }
+    void SetBitmap(const wxBitmap& bitmap) { SetImage(&bitmap); }
 
     // assert failure is provoked by an attempt to get an icon from bitmap or
     // vice versa
@@ -79,7 +79,7 @@ protected:
     // TRUE if icon/bitmap is valid
     bool ImageIsOk() const;
 
-    void SetImage(const wxGDIImage& image);
+    void SetImage(const wxGDIImage* image);
 
     // we can have either an icon or a bitmap
     bool m_isIcon;