]> git.saurik.com Git - wxWidgets.git/blame - src/common/choiccmn.cpp
regenerated after version.bkl changes fixing -compatibility_version for Darwin
[wxWidgets.git] / src / common / choiccmn.cpp
CommitLineData
2d61b48d
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: common/choiccmn.cpp
3// Purpose: common (to all ports) wxChoice functions
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 26.07.99
7// RCS-ID: $Id$
77ffb593 8// Copyright: (c) wxWidgets team
65571936 9// Licence: wxWindows licence
2d61b48d
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
2d61b48d
VZ
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
1e6feb95
VZ
27#if wxUSE_CHOICE
28
2d61b48d
VZ
29#ifndef WX_PRECOMP
30 #include "wx/choice.h"
2d61b48d
VZ
31#endif
32
33// ============================================================================
34// implementation
35// ============================================================================
36
05689a13
WS
37wxChoiceBase::~wxChoiceBase()
38{
39 // this destructor is required for Darwin
40}
41
2d61b48d 42// ----------------------------------------------------------------------------
6c8a980f 43// misc
2d61b48d
VZ
44// ----------------------------------------------------------------------------
45
6c8a980f 46void wxChoiceBase::Command(wxCommandEvent& event)
2d61b48d 47{
687706f5 48 SetSelection(event.GetInt());
6c8a980f 49 (void)ProcessEvent(event);
2d61b48d 50}
1e6feb95
VZ
51
52#endif // wxUSE_CHOICE
53