From 4d384f006c96814af40733d63cd54e62be084b5a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 2 Dec 2002 19:51:33 +0000 Subject: [PATCH] use GetSize() instead of hardcoded 10248768 -- but then it doesn't really matter as the code still doesn't work git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18024 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/x11/dcscreen.cpp | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/src/x11/dcscreen.cpp b/src/x11/dcscreen.cpp index d0dabfbbfc..58f24d50ca 100644 --- a/src/x11/dcscreen.cpp +++ b/src/x11/dcscreen.cpp @@ -93,24 +93,23 @@ bool wxScreenDC::StartDrawingOnTop( wxWindow *window ) return StartDrawingOnTop( &rect ); } -bool wxScreenDC::StartDrawingOnTop( wxRect *rect ) +bool wxScreenDC::StartDrawingOnTop( wxRect *rectIn ) { - int x = 0; - int y = 0; + // VZ: should we do the same thing that wxMotif wxScreenDC does here? #if 0 - int width = gdk_screen_width(); - int height = gdk_screen_height(); -#else - int width = 1024; - int height = 768; -#endif - if (rect) + wxRect rect; + if ( rectIn ) { - x = rect->x; - y = rect->y; - width = rect->width; - height = rect->height; + rect = *rectIn; } + else + { + rect.x = + rect.y = 0; + + DoGetSize(&rect.width, &rect.height); + } +#endif // 0 return TRUE; }