]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/stattext.cpp
removed unneeded (and provoking warnings in DLL build) DLL export declarations
[wxWidgets.git] / src / univ / stattext.cpp
index 8521014b48ee628023405fa07a7325b19869a9d1..6f1261c91761e5be698feb074aae3cd8bf8319ff 100644 (file)
 // headers
 // ----------------------------------------------------------------------------
 
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
-    #pragma implementation "univstattext.h"
-#endif
-
 #include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
 #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) )
                           const wxString &name)
 {
     if ( !wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name) )
-        return FALSE;
+        return false;
         
     SetLabel(label);
     SetBestSize(size);
 
         
     SetLabel(label);
     SetBestSize(size);
 
-    return TRUE;
+    return true;
 }
 
 // ----------------------------------------------------------------------------
 }
 
 // ----------------------------------------------------------------------------