]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/stattext.cpp
Removed wxLogNull's used to supress errors coming from
[wxWidgets.git] / src / univ / stattext.cpp
index 2f2a955f836aa7b9f4a8ea44caf3e507ef71479f..6f1261c91761e5be698feb074aae3cd8bf8319ff 100644 (file)
 // headers
 // ----------------------------------------------------------------------------
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma implementation "univstattext.h"
-#endif
-
 #include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
@@ -57,12 +53,12 @@ bool wxStaticText::Create(wxWindow *parent,
                           const wxString &name)
 {
     if ( !wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name) )
-        return FALSE;
+        return false;
         
     SetLabel(label);
     SetBestSize(size);
 
-    return TRUE;
+    return true;
 }
 
 // ----------------------------------------------------------------------------