]> git.saurik.com Git - wxWidgets.git/blob - src/qt/statbox.cpp
More configure fixes
[wxWidgets.git] / src / qt / statbox.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: statbox.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 #ifdef __GNUG__
12 #pragma implementation "statbox.h"
13 #endif
14
15 #include "wx/statbox.h"
16
17 //-----------------------------------------------------------------------------
18 // wxStaticBox
19 //-----------------------------------------------------------------------------
20
21 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox,wxControl)
22
23 wxStaticBox::wxStaticBox(void)
24 {
25 };
26
27 wxStaticBox::wxStaticBox( wxWindow *parent, wxWindowID id, const wxString &label,
28 const wxPoint &pos, const wxSize &size,
29 long style, const wxString &name )
30 {
31 Create( parent, id, label, pos, size, style, name );
32 };
33
34 bool wxStaticBox::Create( wxWindow *parent, wxWindowID id, const wxString &label,
35 const wxPoint &pos, const wxSize &size,
36 long style, const wxString &name )
37 {
38 };