]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/layout.cpp
added version checking to the renderers
[wxWidgets.git] / src / common / layout.cpp
index 1dd0c63123b1b85cd2523616bf0911ac211b81bb..eb3cc3abf88fe0f7fad7564eefa689fc2c02e29b 100644 (file)
@@ -17,7 +17,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "layout.h"
 #endif
 
@@ -734,7 +734,7 @@ int wxIndividualLayoutConstraint::GetEdge(wxEdge which,
     // If the edge or dimension belongs to the parent, then we know the
     // dimension is obtainable immediately. E.g. a wxExpandSizer may contain a
     // button (but the button's true parent is a panel, not the sizer)
-    if (other->GetChildren().Find(thisWin))
+    if (other->GetChildren().Find((wxWindow*)thisWin))
     {
         switch (which)
         {