X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6aa89a22b8e47000c98bff05c6f545f331f1c353..286694ba265d1bf68290cac192bbe54259c313d9:/src/univ/statbox.cpp?ds=sidebyside

diff --git a/src/univ/statbox.cpp b/src/univ/statbox.cpp
index 1024db8125..20316fc323 100644
--- a/src/univ/statbox.cpp
+++ b/src/univ/statbox.cpp
@@ -17,7 +17,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "univstatbox.h"
 #endif
 
@@ -56,11 +56,11 @@ bool wxStaticBox::Create(wxWindow *parent,
                          const wxString &name)
 {
     if ( !wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name) )
-        return FALSE;
+        return false;
 
     SetLabel(label);
 
-    return TRUE;
+    return true;
 }
 
 void wxStaticBox::DoDraw(wxControlRenderer *renderer)