]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/icon.cpp
Correction for 'protected' compiler error
[wxWidgets.git] / src / x11 / icon.cpp
index 5acb3abee32ebec8b318a79cd12f60a3d7006c6f..e357f22925e7a1d2125fdb3b2ade93f6b6662f94 100644 (file)
@@ -79,3 +79,9 @@ bool wxIcon::LoadFile(const wxString& filename, long type,
         return FALSE;
 }
 
+bool wxIcon::CopyFromBitmap(const wxBitmap& bitmap)
+{
+    wxIcon* icon = (wxIcon*) (& bitmap);
+    *this = *icon;
+    return TRUE;
+}