]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed IsShownOnScreen() for Mac
authorJulian Smart <julian@anthemion.co.uk>
Fri, 22 Feb 2008 14:12:16 +0000 (14:12 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 22 Feb 2008 14:12:16 +0000 (14:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51996 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/window.cpp

index e6ac15ee792d075f31babecfaefdcfbf1f8899c4..9e1334d4ce17c247cafe0b10a379829bd0fc02f7 100644 (file)
@@ -3219,3 +3219,8 @@ wxByte wxWindowMac::GetTransparent() const
 {
     return m_macAlpha ;
 }
+
+bool wxWindowMac::IsShownOnScreen() const
+{
+    return ((wxWindowMac*)this)->MacIsReallyShown();
+}