From: Ryan Norton Date: Mon, 28 Feb 2005 18:18:30 +0000 (+0000) Subject: wxDisplay::GetFromWindow is only on msw evidently X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6a7dd4b3ab87dd870aadbe0148fbb81122ae97e4 wxDisplay::GetFromWindow is only on msw evidently git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32473 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index 5115c3cce6..8277a7c785 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -438,7 +438,8 @@ void wxWindowBase::Centre(int direction) //RN: If we are using wxDisplay we get //the dimensions of the monitor the window is on, //otherwise we get the dimensions of the primary monitor -#if wxUSE_DISPLAY + //FIXME: wxDisplay::GetFromWindow only implemented on MSW +#if wxUSE_DISPLAY && defined(__WXMSW__) int nDisplay = wxDisplay::GetFromWindow((wxWindow*)this); if(nDisplay != wxNOT_FOUND) {