]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/gdiimage.h
Add RunScript and implement on all backends. Document and add a very simple unit...
[wxWidgets.git] / include / wx / palmos / gdiimage.h
index 512d373a28d07fc54cdb78627de2608241aed97b..43edb57a0c55d7f102be90a61634538f1e6dac63 100644 (file)
@@ -151,6 +151,12 @@ public:
     int GetHeight() const { return IsNull() ? 0 : GetGDIImageData()->m_height; }
     int GetDepth() const { return IsNull() ? 0 : GetGDIImageData()->m_depth; }
 
+    wxSize GetSize() const
+    {
+        return IsNull() ? wxSize(0,0) :
+               wxSize(GetGDIImageData()->m_width, GetGDIImageData()->m_height);
+    }
+
     void SetWidth(int w) { EnsureHasData(); GetGDIImageData()->m_width = w; }
     void SetHeight(int h) { EnsureHasData(); GetGDIImageData()->m_height = h; }
     void SetDepth(int d) { EnsureHasData(); GetGDIImageData()->m_depth = d; }
@@ -174,7 +180,7 @@ protected:
     virtual wxGDIRefData *
     CloneGDIRefData(const wxGDIRefData *WXUNUSED(data)) const
     {
-        wxFAIL_MSG( _T("must be implemented if used") );
+        wxFAIL_MSG( wxT("must be implemented if used") );
 
         return NULL;
     }