summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-07-20 20:00:59 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-07-20 20:00:59 +0000
commite678d3530b2c102f75b2ef35b7a8df91b9c410c1 (patch)
tree7fd0faec52a59320a5da77c863b96d7b211d9177 /src
parentpurge LivePathEffect::PathType (diff)
downloadinkscape-e678d3530b2c102f75b2ef35b7a8df91b9c410c1.tar.gz
inkscape-e678d3530b2c102f75b2ef35b7a8df91b9c410c1.zip
whitespace, and add virtual destructor to ModelColumns of LPE stack dialog
(bzr r6374)
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;