]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/choicdgg.cpp
A little clarification
[wxWidgets.git] / src / generic / choicdgg.cpp
index 629284a4badeb17fe983051f8e704842bd4bb71b..960619d89357b5c2df8afec0e8d66d875ee6097f 100644 (file)
@@ -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,