From: johanengelen Date: Sun, 20 Jul 2008 20:00:59 +0000 (+0000) Subject: whitespace, and add virtual destructor to ModelColumns of LPE stack dialog X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=06c725b156a67b3be85eada300f5dea4469a33e8;p=inkscape.git whitespace, and add virtual destructor to ModelColumns of LPE stack dialog --- 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 col_name; - Gtk::TreeModelColumn lperef; - }; + Gtk::TreeModelColumn col_name; + Gtk::TreeModelColumn lperef; + }; Inkscape::UI::Widget::ComboBoxEnum combo_effecttype;