diff options
Diffstat (limited to 'src/gui/PropertiesWindow.hpp')
-rw-r--r-- | src/gui/PropertiesWindow.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/PropertiesWindow.hpp b/src/gui/PropertiesWindow.hpp index d2f619f9..2511e78a 100644 --- a/src/gui/PropertiesWindow.hpp +++ b/src/gui/PropertiesWindow.hpp @@ -47,6 +47,9 @@ public: private: /** Record of a property (row in the table) */ struct Record { + Record(const Raul::Atom& v, Gtk::ComboBox* tw, Gtk::Alignment* vw, int r) + : value(v), type_widget(tw), value_widget(vw), row(r) + {} Raul::Atom value; Gtk::ComboBox* type_widget; Gtk::Alignment* value_widget; |