diff options
Diffstat (limited to 'src/wx/editable_list.h')
| -rw-r--r-- | src/wx/editable_list.h | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/wx/editable_list.h b/src/wx/editable_list.h index 4119b889e..c6cb28a45 100644 --- a/src/wx/editable_list.h +++ b/src/wx/editable_list.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -70,11 +70,6 @@ public: table->Add (s, 0); } - std::vector<T> current = _get (); - for (typename std::vector<T>::iterator i = current.begin (); i != current.end(); ++i) { - add_to_control (*i); - } - _add->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&EditableList::add_clicked, this)); _copy->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&EditableList::copy_clicked, this)); _edit->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&EditableList::edit_clicked, this)); @@ -87,6 +82,16 @@ public: } + void refresh () + { + _list->DeleteAllItems (); + + std::vector<T> current = _get (); + for (typename std::vector<T>::iterator i = current.begin (); i != current.end(); ++i) { + add_to_control (*i); + } + } + private: void add_to_control (T item) |
