fix virtual function hiding for LoadFile(); replace a few more longs with wxBitmapTypes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56883 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-11-21 16:17:16 +00:00
parent 101872998b
commit f1ca421b41
2 changed files with 14 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ public:
wxIcon(const char* const* data);
wxIcon(const char bits[], int width , int height );
wxIcon(const wxString& name, int flags = wxICON_DEFAULT_TYPE,
wxIcon(const wxString& name, wxBitmapType flags = wxICON_DEFAULT_TYPE,
int desiredWidth = -1, int desiredHeight = -1);
wxIcon(const wxIconLocation& loc)
{
@@ -88,9 +88,16 @@ public:
SetType(wxBITMAP_TYPE_ICON_RESOURCE);
};
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
int desiredWidth = -1, int desiredHeight = -1);
virtual bool LoadFile(wxBitmap *bitmap,
const wxString& name,
wxBitmapType flags,
int desiredWidth = -1,
int desiredHeight = -1);
// unhide the base class virtual
virtual bool LoadFile(wxBitmap *bitmap,
const wxString& name,
wxBitmapType flags)
{ return LoadFile(bitmap, name, flags, -1, -1); }
};
#endif