Forgot to add a destructor to UI_Choice.

This commit is contained in:
Joseph Lenox 2018-06-28 22:24:34 -05:00 committed by Joseph Lenox
parent 4cb2930b54
commit 14fc049c6f

View File

@ -221,6 +221,7 @@ public:
} }
return this->_choice->GetValue().ToStdString(); return this->_choice->GetValue().ToStdString();
} }
~UI_Choice() { _choice->Destroy(); }
/// Returns a bare pointer to the underlying combobox, usually for test interface /// Returns a bare pointer to the underlying combobox, usually for test interface