]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/grid.cpp
cleaned up VMS #ifdef mess
[wxWidgets.git] / src / generic / grid.cpp
index cfea196c38546f0cdf0f6e2d6a104e0309139b6e..de4327dcdb2831a48936cdc038d5debbd0730f30 100644 (file)
@@ -1364,6 +1364,11 @@ wxString wxGridCellBoolEditor::GetValue() const
 // wxGridCellChoiceEditor
 // ----------------------------------------------------------------------------
 
+wxGridCellChoiceEditor::wxGridCellChoiceEditor(const wxArrayString& choices,
+                                               bool allowOthers)
+    : m_choices(choices),
+      m_allowOthers(allowOthers) { }
+
 wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count,
                                                const wxString choices[],
                                                bool allowOthers)