]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/xpmhand.h
pragma fix for gcc
[wxWidgets.git] / include / wx / os2 / xpmhand.h
index 662f954da6f699b6b2217a377a48826f2bfa11e2..c83fcde5e16d78c2f612aa92f25b924a7c352204 100644 (file)
@@ -38,6 +38,18 @@ public:
                           ,int              nType
                           ,const wxPalette* pPalette = NULL
                          );
+private:
+    inline bool LoadFile( wxBitmap*       pBitmap
+                         ,const wxString& rsName
+                         ,HPS             hPs
+                         ,long            lFlags
+                         ,int             nDesiredWidth
+                         ,int             nDesiredHeight
+                        )
+    {
+        return(wxBitmapHandler::LoadFile(pBitmap, rsName, hPs, lFlags, nDesiredWidth, nDesiredHeight));
+    }
+
 }; // end of CLASS wxWPMFileHandler
 
 class WXDLLEXPORT wxXPMDataHandler: public wxBitmapHandler
@@ -57,6 +69,18 @@ public:
                         ,int       lHeight
                         ,int       lDepth = 1
                        );
+private:
+    bool Create( wxGDIImage* pImage
+                ,void*       pData
+                ,long        lFlags
+                ,int         nWidth
+                ,int         nHeight
+                ,int         nDepth = 1
+               )
+    {
+        return(wxBitmapHandler::Create(pImage, pData, lFlags, nWidth, nHeight, nDepth));
+    }
+
 }; // end of wxXPMDataHandler
 
 #endif