]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/stattext.cpp
allow adjusting the combo button size (patch 1489452)
[wxWidgets.git] / src / univ / stattext.cpp
index bef5b6e80e881ec675b43c7069cb85f8c4b4f2a8..6f1261c91761e5be698feb074aae3cd8bf8319ff 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     14.08.00
 // RCS-ID:      $Id$
 // Copyright:   (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
-    #pragma implementation "univstattext.h"
-#endif
-
 #include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
@@ -42,6 +38,8 @@
 // implementation
 // ============================================================================
 
+IMPLEMENT_ABSTRACT_CLASS(wxStaticText, wxControl)
+
 // ----------------------------------------------------------------------------
 // creation
 // ----------------------------------------------------------------------------
@@ -55,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;
 }
 
 // ----------------------------------------------------------------------------