wxString fullname = loc.GetFileName();
if ( loc.GetIndex() )
{
- fullname << _T(';') << loc.GetIndex();
+ fullname << wxT(';') << loc.GetIndex();
}
//else: 0 is default
return handler->Load(this, filename, type, desiredWidth, desiredHeight);
}
+
+bool wxIcon::CreateFromHICON(WXHICON icon)
+{
+ SetHICON(icon);
+ if ( !IsOk() )
+ return false;
+
+ SetSize(wxGetHiconSize(icon));
+
+ return true;
+}