X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dad6a47e6d425673510b53e9a01114cdea2a5f2c..9013f513411ec38237e83ec19bd7c525cc89a8eb:/src/motif/frame.cpp diff --git a/src/motif/frame.cpp b/src/motif/frame.cpp index 22ec6184a3..7b325f41da 100644 --- a/src/motif/frame.cpp +++ b/src/motif/frame.cpp @@ -21,6 +21,8 @@ #pragma implementation "frame.h" #endif +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" #ifdef __VMS #define XtDisplay XTDISPLAY @@ -353,7 +355,12 @@ void wxFrame::DoGetClientSize(int *x, int *y) const yy -= tbh; } #endif // wxUSE_TOOLBAR - *x = xx; *y = yy; + +//CE found a call here with NULL y pointer + if (x) + *x = xx; + if (y) + *y = yy; } // Set the client size (i.e. leave the calculation of borders etc.