As I could figure out, XPM is now "fully supported"
in this release,
in setup.h
#define wxUSE_XPM_IN_MSW 1
is set.
However, if I try to read an XPM file, I get a
No image handler for type 9 defined
error message. And really, only
AddHandler( new wxBMPHandler );
is installed as standard handler.
As I grep-ed the sources, (including the xpm sources)
I could not find wxXPMHandler.
What do I miss?
Thanks
Janos
____________________________________________________________________
Get free email and a permanent address at http://www.amexmail.com/?A=1
_______________________________________________
wxWindows-users mailing list
wxWindo...@lists.sourceforge.net
http://lists.sourceforge.net/lists/listinfo/wxwindows-users
Janos Vegh wrote:
> No image handler for type 9 defined
..
> What do I miss?
That XPM is supported by wxBitmap, not wxImage?
VS