Applied patch [ 832096 ] Final separation for GUI and console for Open Watcom
(Watcom compiler doesn't like ctor implementation in headers) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25121 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -238,6 +238,22 @@ size_t wxGetMultipleChoices(wxArrayInt& selections,
|
||||
// wxAnyChoiceDialog
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
wxAnyChoiceDialog::wxAnyChoiceDialog()
|
||||
{
|
||||
}
|
||||
|
||||
wxAnyChoiceDialog::wxAnyChoiceDialog(wxWindow *parent,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
int n,
|
||||
const wxString *choices,
|
||||
long styleDlg,
|
||||
const wxPoint& pos,
|
||||
long styleLbox)
|
||||
{
|
||||
(void)Create(parent, message, caption, n, choices, styleDlg, pos, styleLbox);
|
||||
}
|
||||
|
||||
bool wxAnyChoiceDialog::Create(wxWindow *parent,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
@@ -296,6 +312,11 @@ END_EVENT_TABLE()
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxSingleChoiceDialog, wxDialog)
|
||||
|
||||
wxSingleChoiceDialog::wxSingleChoiceDialog()
|
||||
{
|
||||
m_selection = -1;
|
||||
}
|
||||
|
||||
wxSingleChoiceDialog::wxSingleChoiceDialog(wxWindow *parent,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
@@ -366,6 +387,21 @@ void wxSingleChoiceDialog::OnListBoxDClick(wxCommandEvent& WXUNUSED(event))
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxMultiChoiceDialog, wxDialog)
|
||||
|
||||
wxMultiChoiceDialog::wxMultiChoiceDialog()
|
||||
{
|
||||
}
|
||||
|
||||
wxMultiChoiceDialog::wxMultiChoiceDialog(wxWindow *parent,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
int n,
|
||||
const wxString *choices,
|
||||
long style,
|
||||
const wxPoint& pos)
|
||||
{
|
||||
(void)Create(parent, message, caption, n, choices, style, pos);
|
||||
}
|
||||
|
||||
bool wxMultiChoiceDialog::Create( wxWindow *parent,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
|
Reference in New Issue
Block a user