]> git.saurik.com Git - wxWidgets.git/commitdiff
Better stub for wxDisplaySize
authorDavid Elliott <dfe@tgwbd.org>
Thu, 24 Jul 2003 18:29:59 +0000 (18:29 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Thu, 24 Jul 2003 18:29:59 +0000 (18:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22276 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/utils.cpp

index 3156561f31dac826c146148ae167c6b75f0494c0..6f0cbfae94c614118dfe048a3e76aa8b9384b2bd 100644 (file)
 void wxDisplaySize(int *width, int *height)
 {
     // TODO
+    if(width)
+        *width = 1024;
+    if(height)
+        *height = 768;
 }
 
 void wxDisplaySizeMM(int*,int*)