summaryrefslogtreecommitdiff
path: root/gtk2_ardour/connection_editor.h
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2005-10-22 15:30:17 +0000
committerTaybin Rutkin <taybin@taybin.com>2005-10-22 15:30:17 +0000
commit01a15535e8b44d1c3e1f8d9f43302c03d98e360c (patch)
tree397aa7b024c2855a77e730139da051ac89113f42 /gtk2_ardour/connection_editor.h
parent494ecdd0d381fe4f4d7ff00a53c62d9d82c3d229 (diff)
editor.h compiles.
git-svn-id: svn://localhost/trunk/ardour2@64 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/connection_editor.h')
-rw-r--r--gtk2_ardour/connection_editor.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk2_ardour/connection_editor.h b/gtk2_ardour/connection_editor.h
index 1d0c140c4f..becc852638 100644
--- a/gtk2_ardour/connection_editor.h
+++ b/gtk2_ardour/connection_editor.h
@@ -35,6 +35,7 @@ using __gnu_cxx::slist;
#include <gtkmm/frame.h>
#include <gtkmm/notebook.h>
#include <gtkmm/treeview.h>
+#include <gtkmm/liststore.h>
#include "ardour_dialog.h"
@@ -62,9 +63,9 @@ class ConnectionEditor : public ArdourDialog {
struct ConnectionDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
- SnapshotDisplayModelColumns() {
- add (visible_name);
- add (real_name);
+ ConnectionDisplayModelColumns() {
+ add (name);
+ add (connection);
}
Gtk::TreeModelColumn<Glib::ustring> name;
Gtk::TreeModelColumn<ARDOUR::Connection*> connection;