]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/mac/carbon/radiobox.cpp
Hopefully fixed library names generated by wx-config for OS/2's PM port.
[wxWidgets.git] / src / mac / carbon / radiobox.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: radiobox.cpp
3// Purpose: wxRadioBox
4// Author: Stefan Csomor
5// Modified by: JS Lair (99/11/15) first implementation
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13#pragma implementation "radioboxbase.h"
14#pragma implementation "radiobox.h"
15#endif
16
17//-------------------------------------------------------------------------------------
18// headers
19//-------------------------------------------------------------------------------------
20
21#include "wx/wxprec.h"
22
23#if wxUSE_RADIOBOX
24
25#include "wx/arrstr.h"
26
27#include "wx/radiobox.h"
28#include "wx/radiobut.h"
29#include "wx/mac/uma.h"
30
31IMPLEMENT_DYNAMIC_CLASS(wxRadioBox, wxControl)
32
33//-------------------------------------------------------------------------------------
34