class wxIcon : public wxGDIObject
{
public:
- wxIcon(const wxString& name, long flags,
+ wxIcon(const wxString& name, wxBitmapType type,
int desiredWidth = -1, int desiredHeight = -1);
~wxIcon();
#ifndef __WXMAC__
- bool LoadFile(const wxString& name, long flags);
+ bool LoadFile(const wxString& name, wxBitmapType type);
#endif
// wxGDIImage methods
~wxIconLocation();
- // returns true if this object is valid/initialized
+ // returns True if this object is valid/initialized
bool IsOk() const;
%pythoncode { def __nonzero__(self): return self.Ok() }