Don't cache history strings in eventDescrArray in history.cc, fixes #4145

This commit is contained in:
heckflosse
2017-10-16 22:18:13 +02:00
parent 43ea69447f
commit 659fa619d4
2 changed files with 5 additions and 16 deletions

View File

@@ -40,7 +40,6 @@ public:
class HistoryColumns : public Gtk::TreeModel::ColumnRecord
{
public:
Gtk::TreeModelColumn<Glib::ustring> realText;
Gtk::TreeModelColumn<Glib::ustring> text;
Gtk::TreeModelColumn<Glib::ustring> value;
Gtk::TreeModelColumn<rtengine::procparams::ProcParams> params;
@@ -49,7 +48,6 @@ public:
HistoryColumns()
{
add(text);
add(realText);
add(value);
add(chev);
add(params);