]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/control.cpp
New default configuration is debug/static
[wxWidgets.git] / src / gtk1 / control.cpp
index 8801219ee3fa05160e9360fb8cab029c9687cf10..82f10af912671f0dd764b08a1f974f23e050bb29 100644 (file)
@@ -7,10 +7,13 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "control.h"
 #endif
 
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
 #include "wx/defs.h"
 
 #if wxUSE_CONTROLS
@@ -83,6 +86,7 @@ wxSize wxControl::DoGetBestSize() const
     return wxSize(req.width, req.height);
 }
 
+#ifdef __WXGTK20__
 wxString wxControl::PrepareLabelMnemonics( const wxString &label ) const
 {
     //Format mnemonics properly for GTK2. This can be called from GTK1.x, but
@@ -124,6 +128,7 @@ wxString wxControl::PrepareLabelMnemonics( const wxString &label ) const
     }
     return label2;
 }
+#endif
 
 #endif // wxUSE_CONTROLS