]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/png/pngdemo.cpp
added an extremely simple cell attr cache (yet it catches 80% of acccesses)
[wxWidgets.git] / samples / png / pngdemo.cpp
index c3ef8185092926c22c9036d27387ff4d0dff9978..473340a6e95e51fd39794423d36c31388eb2e47d 100644 (file)
 #pragma hdrstop
 #endif
 
-#ifdef __WXMSW__
-#include "wx/pnghand.h"
-#endif
-#ifdef __WXGTK__
 #include "wx/image.h"
-#endif
 
 #include "pngdemo.h"
 
@@ -40,12 +35,7 @@ MyApp::MyApp()
 
 bool MyApp::OnInit(void)
 {
-#ifdef __WXMSW__
-  wxBitmap::AddHandler(new wxPNGFileHandler);
-#endif
-#ifdef __WXGTK__
   wxImage::AddHandler(new wxPNGHandler);
-#endif
 
   // Create the main frame window
   frame = new MyFrame((wxFrame *) NULL, "wxPNGBitmap Demo", wxPoint(0, 0), wxSize(300, 300));