]> git.saurik.com Git - wxWidgets.git/blob - src/qt/stattext.cpp
More configure fixes
[wxWidgets.git] / src / qt / stattext.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: stattext.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Created: 01/02/97
6 // Id:
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11
12 #ifdef __GNUG__
13 #pragma implementation "stattext.h"
14 #endif
15
16 #include "wx/stattext.h"
17
18 //-----------------------------------------------------------------------------
19 // wxStaticText
20 //-----------------------------------------------------------------------------
21
22 IMPLEMENT_DYNAMIC_CLASS(wxStaticText,wxControl)
23
24 wxStaticText::wxStaticText(void)
25 {
26 };
27
28 wxStaticText::wxStaticText( wxWindow *parent, wxWindowID id, const wxString &label,
29 const wxPoint &pos, const wxSize &size,
30 long style, const wxString &name )
31 {
32 Create( parent, id, label, pos, size, style, name );
33 };
34
35 bool wxStaticText::Create( wxWindow *parent, wxWindowID id, const wxString &label,
36 const wxPoint &pos, const wxSize &size,
37 long style, const wxString &name )
38 {
39 return TRUE;
40 };
41
42 wxString wxStaticText::GetLabel(void) const
43 {
44 };
45
46 void wxStaticText::SetLabel( const wxString &label )
47 {
48 wxControl::SetLabel(label);
49 };