mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 16:24:57 +01:00
editor.h compiles.
git-svn-id: svn://localhost/trunk/ardour2@64 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
494ecdd0d3
commit
01a15535e8
10 changed files with 33 additions and 49 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue