From: Julian Smart Date: Fri, 22 Feb 2008 14:12:16 +0000 (+0000) Subject: Fixed IsShownOnScreen() for Mac X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/983ddcb9d61334f509e47e6b6e5cb7bfd5537cff Fixed IsShownOnScreen() for Mac git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51996 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/window.cpp b/src/mac/carbon/window.cpp index e6ac15ee79..9e1334d4ce 100644 --- a/src/mac/carbon/window.cpp +++ b/src/mac/carbon/window.cpp @@ -3219,3 +3219,8 @@ wxByte wxWindowMac::GetTransparent() const { return m_macAlpha ; } + +bool wxWindowMac::IsShownOnScreen() const +{ + return ((wxWindowMac*)this)->MacIsReallyShown(); +}