]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/gdiimage.h
Applied wxStackWalker improvement part of
[wxWidgets.git] / include / wx / msw / gdiimage.h
index 8c6cd818cbcd184a8ef406de1a405960da30c425..2111414a63e63ba96c0502bd72d93565b6645ddb 100644 (file)
@@ -104,7 +104,7 @@ public:
 
     // real handler operations: to implement in derived classes
     virtual bool Create(wxGDIImage *image,
-                        void *data,
+                        const void* data,
                         long flags,
                         int width, int height, int depth = 1) = 0;
     virtual bool Load(wxGDIImage *image,
@@ -154,7 +154,8 @@ public:
     void SetHandle(WXHANDLE handle)
         { AllocExclusive(); GetGDIImageData()->m_handle = handle; }
 
-    bool Ok() const { return GetHandle() != 0; }
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const { return GetHandle() != 0; }
 
     int GetWidth() const { return IsNull() ? 0 : GetGDIImageData()->m_width; }
     int GetHeight() const { return IsNull() ? 0 : GetGDIImageData()->m_height; }