WXHCURSOR m_hCursor;
};
- UINT m_uId;
+ unsigned int m_uId;
};
// ----------------------------------------------------------------------------
}
void SetSize(const wxSize& rSize) { SetSize(rSize.x, rSize.y); }
- UINT GetId(void) const
+ unsigned int GetId(void) const
{
wxGDIImageRefData* pData;
else
return pData->m_uId;
} // end of WxWinGdi_CGDIImage::GetId
- void SetId(UINT uId)
+ void SetId(unsigned int uId)
{
wxGDIImageRefData* pData;
virtual wxGDIImageRefData* CreateData() const = 0;
virtual wxGDIRefData *CreateGDIRefData() const { return CreateData(); }
+ // we can't [efficiently] clone objects of this class
+ virtual wxGDIRefData *
+ CloneGDIRefData(const wxGDIRefData *WXUNUSED(data)) const
+ {
+ wxFAIL_MSG( _T("must be implemented if used") );
+
+ return NULL;
+ }
+
static wxGDIImageHandlerList ms_handlers;
};