}
wxIcon::wxIcon(const wxString& iconfile,
- long flags,
+ wxBitmapType type,
int desiredWidth,
int desiredHeight)
{
- LoadFile(iconfile, flags, desiredWidth, desiredHeight);
+ LoadFile(iconfile, type, desiredWidth, desiredHeight);
}
wxIcon::wxIcon(const wxIconLocation& loc)
wxString fullname = loc.GetFileName();
if ( loc.GetIndex() )
{
- fullname << _T(';') << loc.GetIndex();
+ fullname << wxT(';') << loc.GetIndex();
}
//else: 0 is default
wxObjectRefData *wxIcon::CloneRefData(const wxObjectRefData *dataOrig) const
{
const wxIconRefData *
- data = wx_static_cast(const wxIconRefData *, dataOrig);
+ data = static_cast<const wxIconRefData *>(dataOrig);
if ( !data )
return NULL;
}
bool wxIcon::LoadFile(const wxString& filename,
- long type,
+ wxBitmapType type,
int desiredWidth, int desiredHeight)
{
UnRef();