summaryrefslogtreecommitdiff
path: root/gtk2_ardour/port_matrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/port_matrix.h')
-rw-r--r--gtk2_ardour/port_matrix.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk2_ardour/port_matrix.h b/gtk2_ardour/port_matrix.h
index 44dc14acae..a789ea6203 100644
--- a/gtk2_ardour/port_matrix.h
+++ b/gtk2_ardour/port_matrix.h
@@ -27,7 +27,7 @@
#include <gtkmm/label.h>
#include <gtkmm/checkbutton.h>
#include <boost/shared_ptr.hpp>
-#include "port_matrix_body.h"
+#include "ardour/bundle.h"
#include "port_group.h"
/** The `port matrix' UI. This is a widget which lets the user alter
@@ -43,6 +43,8 @@ namespace ARDOUR {
class Bundle;
}
+class PortMatrixBody;
+
class PortMatrix : public Gtk::VBox
{
public:
@@ -144,7 +146,7 @@ private:
ARDOUR::DataType _type;
std::vector<sigc::connection> _route_connections;
- PortMatrixBody _body;
+ PortMatrixBody* _body;
Gtk::HScrollbar _hscroll;
Gtk::VScrollbar _vscroll;
Gtk::HBox _main_hbox;