diff --git a/src/cocoa/utils.cpp b/src/cocoa/utils.cpp index 3156561f31..6f0cbfae94 100644 --- a/src/cocoa/utils.cpp +++ b/src/cocoa/utils.cpp @@ -25,6 +25,10 @@ void wxDisplaySize(int *width, int *height) { // TODO + if(width) + *width = 1024; + if(height) + *height = 768; } void wxDisplaySizeMM(int*,int*)