]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/gdicmn.cpp
supressed error messages when wxCSConv cannot find registry key and/or value when...
[wxWidgets.git] / src / common / gdicmn.cpp
index 2c62bcefdad4c750685e71b1cc3285fad4896aff..c6b57f5f99b384ba1024ad559af7f09a3ce87519 100644 (file)
@@ -723,6 +723,13 @@ wxSize wxGetDisplaySize()
     return wxSize(x, y);
 }
 
+wxRect wxGetClientDisplayRect()
+{
+    int x, y, width, height;
+    wxClientDisplayRect(&x, &y, &width, &height);  // call plat-specific version
+    return wxRect(x, y, width, height);
+}
+
 wxSize wxGetDisplaySizeMM()
 {
     int x, y;