summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/livepatheffect-editor.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/ui/dialog/livepatheffect-editor.h b/src/ui/dialog/livepatheffect-editor.h
index 49b25d607..a1d4479ab 100644
--- a/src/ui/dialog/livepatheffect-editor.h
+++ b/src/ui/dialog/livepatheffect-editor.h
@@ -68,16 +68,17 @@ private:
class ModelColumns : public Gtk::TreeModel::ColumnRecord
{
- public:
- ModelColumns()
- {
+ public:
+ ModelColumns()
+ {
add(col_name);
add(lperef);
- }
+ }
+ virtual ~ModelColumns() {}
- Gtk::TreeModelColumn<Glib::ustring> col_name;
- Gtk::TreeModelColumn<LivePathEffect::LPEObjectReference *> lperef;
- };
+ Gtk::TreeModelColumn<Glib::ustring> col_name;
+ Gtk::TreeModelColumn<LivePathEffect::LPEObjectReference *> lperef;
+ };
Inkscape::UI::Widget::ComboBoxEnum<LivePathEffect::EffectType> combo_effecttype;