]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/dataobj2.h
no real change; just add the standard separator where it's missing
[wxWidgets.git] / include / wx / gtk / dataobj2.h
index 250305b177805eef8caa4d097d761f1335bf5545..b820f1c22c1fb6bd50df07370e72324efc60e429 100644 (file)
@@ -49,7 +49,7 @@ public:
     }
 
 protected:
     }
 
 protected:
-    void Init() { m_pngData = (void *)NULL; m_pngSize = 0; }
+    void Init() { m_pngData = NULL; m_pngSize = 0; }
     void Clear() { free(m_pngData); }
     void ClearAll() { Clear(); Init(); }
 
     void Clear() { free(m_pngData); }
     void ClearAll() { Clear(); Init(); }
 
@@ -100,13 +100,27 @@ public:
 
     wxString GetURL() const { return m_url; }
     void SetURL(const wxString& url) { m_url = url; }
 
     wxString GetURL() const { return m_url; }
     void SetURL(const wxString& url) { m_url = url; }
-    
-private:
-    wxString m_url;
 
     virtual size_t GetDataSize() const;
     virtual bool GetDataHere(void *buf) const;
     virtual bool SetData(size_t len, const void *buf);
 
     virtual size_t GetDataSize() const;
     virtual bool GetDataHere(void *buf) const;
     virtual bool SetData(size_t len, const void *buf);
+
+    // Must provide overloads to avoid hiding them (and warnings about it)
+    virtual size_t GetDataSize(const wxDataFormat&) const
+    {
+        return GetDataSize();
+    }
+    virtual bool GetDataHere(const wxDataFormat&, void *buf) const
+    {
+        return GetDataHere(buf);
+    }
+    virtual bool SetData(const wxDataFormat&, size_t len, const void *buf)
+    {
+        return SetData(len, buf);
+    }
+
+private:
+    wxString m_url;
 };
 
 
 };