]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dpycmn.cpp
don't crash when loading images with verbose==false (patch 1449823)
[wxWidgets.git] / src / common / dpycmn.cpp
index b30084f099d260005b683121eab0258b1b51bf61..d375d9e49486c45def38db9e410808053a4ab381 100644 (file)
@@ -68,6 +68,8 @@ public:
         return r;
     }
 
+    virtual wxRect GetClientArea() const { return wxGetClientDisplayRect(); }
+
     virtual wxString GetName() const { return wxString(); }
 
 #if wxUSE_DISPLAY
@@ -162,6 +164,13 @@ wxRect wxDisplay::GetGeometry() const
     return m_impl->GetGeometry();
 }
 
+wxRect wxDisplay::GetClientArea() const
+{
+    wxCHECK_MSG( IsOk(), wxRect(), _T("invalid wxDisplay object") );
+
+    return m_impl->GetClientArea();
+}
+
 wxString wxDisplay::GetName() const
 {
     wxCHECK_MSG( IsOk(), wxString(), _T("invalid wxDisplay object") );