// Author: Julian Smart
// Modified by: 20.11.99 (VZ): don't derive from wxBitmap any more
// Created: 04/01/98
-// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
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;
+}