]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/window.cpp
pen.h depends from brush.h in compat mode
[wxWidgets.git] / src / mac / carbon / window.cpp
index 220960871acaadb4714dcf58559d056b39d93a86..a568f33d287dac8da435ab0154cbb95fa945682c 100644 (file)
@@ -885,9 +885,6 @@ void wxWindowMac::Init()
     m_macIsUserPane = true;
     m_clipChildren = false ;
     m_cachedClippedRectValid = false ;
-
-    // we need a valid font for the encodings
-    wxWindowBase::SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
 }
 
 wxWindowMac::~wxWindowMac()
@@ -3210,6 +3207,12 @@ bool wxWindowMac::IsShownOnScreen() const
         bool wxVis = wxWindowBase::IsShownOnScreen();
         if( peerVis != wxVis )
         {
+            // CS : put a breakpoint here to investigate differences
+            // between native an wx visibilities
+            // the only place where I've encountered them until now
+            // are the hiding/showing sequences where the vis-changed event is 
+            // first sent to the innermost control, while wx does things
+            // from the outmost control
             wxVis = wxWindowBase::IsShownOnScreen();
             return wxVis;
         }