X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8bbe427f8e5a2078b266e282453595b5a634d35c..1978421a6d8b81c1f8a961da4b8ddf544fec7b1b:/src/gtk/icon.cpp diff --git a/src/gtk/icon.cpp b/src/gtk/icon.cpp index a372cb9869..ef9780a56c 100644 --- a/src/gtk/icon.cpp +++ b/src/gtk/icon.cpp @@ -7,10 +7,13 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "icon.h" #endif +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" + #include "wx/icon.h" //----------------------------------------------------------------------------- @@ -45,3 +48,8 @@ wxIcon& wxIcon::operator = ( const wxIcon& icon ) return *this; } +void wxIcon::CopyFromBitmap(const wxBitmap& bmp) +{ + wxIcon *icon = (wxIcon*)(&bmp); + *this = *icon; +}