git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45321
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxIconBundle::wxIconBundle()
: wxGDIObject()
{
- m_refData = new wxIconBundleRefData;
}
wxIconBundle::wxIconBundle(const wxString& file, long type)
: wxGDIObject()
{
- m_refData = new wxIconBundleRefData;
AddIcon(file, type);
}
wxIconBundle::wxIconBundle(const wxIcon& icon)
: wxGDIObject()
{
- m_refData = new wxIconBundleRefData;
AddIcon(icon);
}
void wxIconBundle::DeleteIcons()
{
- wxIconBundleRefData* ref = new wxIconBundleRefData();
UnRef();
- m_refData = ref;
}
bool wxIconBundle::IsOk() const