]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/gdiimage.h
update mac gl, after rev 50900
[wxWidgets.git] / include / wx / os2 / gdiimage.h
index 7269022b2b9a6d24b42aae3300d1af18d0d7e536..de43fec73a7412fbdfa0e66670d009708b5eabf8 100644 (file)
@@ -41,7 +41,7 @@ public:
     }
 
     // accessors
-    bool IsOk() const
+    virtual bool IsOk() const
     {
         if (m_hHandle == 0)
             return false;
@@ -187,9 +187,6 @@ public:
         pData->m_hHandle = hHandle;
     }
 
-    bool Ok() const { return IsOk(); }
-    bool IsOk() const { return GetHandle() != 0; }
-
     int GetWidth() const { return IsNull() ? 0 : GetGDIImageData()->m_nWidth; }
     int GetHeight() const { return IsNull() ? 0 : GetGDIImageData()->m_nHeight; }
     int GetDepth() const { return IsNull() ? 0 : GetGDIImageData()->m_nDepth; }
@@ -232,6 +229,7 @@ public:
 protected:
     // create the data for the derived class here
     virtual wxGDIImageRefData* CreateData() const = 0;
+    virtual wxGDIRefData *CreateGDIRefData() const { return CreateData(); }
 
     static wxGDIImageHandlerList    ms_handlers;
 };