]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/common/choiccmn.cpp
Add a length parameter for wxRegEx::Matches
[wxWidgets.git] / src / common / choiccmn.cpp
... / ...
CommitLineData
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$
8// Copyright: (c) wxWidgets team
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27#if wxUSE_CHOICE
28
29#ifndef WX_PRECOMP
30 #include "wx/choice.h"
31#endif
32
33// ============================================================================
34// implementation
35// ============================================================================
36
37wxChoiceBase::~wxChoiceBase()
38{
39 // this destructor is required for Darwin
40}
41
42// ----------------------------------------------------------------------------
43// misc
44// ----------------------------------------------------------------------------
45
46void wxChoiceBase::Command(wxCommandEvent& event)
47{
48 SetSelection(event.GetInt());
49 (void)ProcessEvent(event);
50}
51
52#endif // wxUSE_CHOICE
53