remove pict support for 64bit

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50197 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2007-11-23 19:41:54 +00:00
parent 4ae3fe3952
commit 2078e2f129

View File

@@ -1624,6 +1624,8 @@ IMPLEMENT_ABSTRACT_CLASS(wxBitmapHandler, wxBitmapHandlerBase)
// Standard Handlers
// ----------------------------------------------------------------------------
#ifndef __LP64__
class WXDLLEXPORT wxPICTResourceHandler: public wxBitmapHandler
{
DECLARE_DYNAMIC_CLASS(wxPICTResourceHandler)
@@ -1671,10 +1673,13 @@ bool wxPICTResourceHandler::LoadFile(wxBitmap *bitmap,
return false ;
}
#endif
void wxBitmap::InitStandardHandlers()
{
#ifndef __LP64__
AddHandler( new wxPICTResourceHandler ) ;
#endif
AddHandler( new wxICONResourceHandler ) ;
}