wxX11 compilation fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31803 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1320,9 +1320,9 @@ class wxXPMFileHandler : public wxBitmapHandler
|
|||||||
public:
|
public:
|
||||||
wxXPMFileHandler()
|
wxXPMFileHandler()
|
||||||
{
|
{
|
||||||
m_name = wxT("XPM file");
|
SetName( wxT("XPM file") );
|
||||||
m_extension = wxT("xpm");
|
SetExtension( wxT("xpm") );
|
||||||
m_type = wxBITMAP_TYPE_XPM;
|
SetType( wxBITMAP_TYPE_XPM );
|
||||||
};
|
};
|
||||||
|
|
||||||
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
|
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
|
||||||
@@ -1428,9 +1428,9 @@ class wxXPMDataHandler : public wxBitmapHandler
|
|||||||
public:
|
public:
|
||||||
wxXPMDataHandler()
|
wxXPMDataHandler()
|
||||||
{
|
{
|
||||||
m_name = wxT("XPM data");
|
SetName( wxT("XPM data") );
|
||||||
m_extension = wxT("xpm");
|
SetExtension( wxT("xpm") );
|
||||||
m_type = wxBITMAP_TYPE_XPM_DATA;
|
SetType( wxBITMAP_TYPE_XPM_DATA );
|
||||||
};
|
};
|
||||||
|
|
||||||
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
|
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
|
||||||
@@ -1529,9 +1529,9 @@ class WXDLLEXPORT wxXBMDataHandler: public wxBitmapHandler
|
|||||||
public:
|
public:
|
||||||
inline wxXBMDataHandler()
|
inline wxXBMDataHandler()
|
||||||
{
|
{
|
||||||
m_name = wxT("XBM data");
|
SetName( wxT("XBM data") );
|
||||||
m_extension = wxT("xbm");
|
SetExtension( wxT("xbm") );
|
||||||
m_type = wxBITMAP_TYPE_XBM_DATA;
|
SetType( wxBITMAP_TYPE_XBM_DATA );
|
||||||
};
|
};
|
||||||
|
|
||||||
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
|
virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
|
||||||
|
Reference in New Issue
Block a user