summaryrefslogtreecommitdiffstats
path: root/src/event-log.h
diff options
context:
space:
mode:
authorgustav_b <gustav_b@users.sourceforge.net>2007-03-28 20:38:10 +0000
committergustav_b <gustav_b@users.sourceforge.net>2007-03-28 20:38:10 +0000
commita719dcb0e9b591316d3fd3914a5835858befd911 (patch)
treeaa96733ddde2364f48a95663023ffbdd219f8f84 /src/event-log.h
parentAdd shift+click to union new fill with old selection (diff)
downloadinkscape-a719dcb0e9b591316d3fd3914a5835858befd911.tar.gz
inkscape-a719dcb0e9b591316d3fd3914a5835858befd911.zip
Fix for #1684042 (undo while adding a shape with the mouse results in a crash.)
(bzr r2774)
Diffstat (limited to 'src/event-log.h')
-rw-r--r--src/event-log.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/event-log.h b/src/event-log.h
index 259731de2..02cfa4b9a 100644
--- a/src/event-log.h
+++ b/src/event-log.h
@@ -53,13 +53,14 @@ public:
struct EventModelColumns : public Gtk::TreeModelColumnRecord
{
+ Gtk::TreeModelColumn<Event *> event;
Gtk::TreeModelColumn<unsigned int> type;
Gtk::TreeModelColumn<Glib::ustring> description;
Gtk::TreeModelColumn<int> child_count;
EventModelColumns()
{
- add(type); add(description); add(child_count);
+ add(event); add(type); add(description); add(child_count);
}
};