summaryrefslogtreecommitdiff
path: root/gtk2_ardour/port_group.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-11-15 00:26:28 +0000
committerCarl Hetherington <carl@carlh.net>2009-11-15 00:26:28 +0000
commit2e02e157c30464ccc1cd9d8dc7564d2fabc95e5e (patch)
treed1cbf7ee53f73314a5481747b976a5a70cbfac28 /gtk2_ardour/port_group.h
parentccf58b8de23619db9983a45f696fd97e13a15cce (diff)
Tidy up a bit in the case where the port matrix has nothing to display.
git-svn-id: svn://localhost/ardour2/branches/3.0@6089 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/port_group.h')
-rw-r--r--gtk2_ardour/port_group.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk2_ardour/port_group.h b/gtk2_ardour/port_group.h
index 27698ddbb0..e367adec9b 100644
--- a/gtk2_ardour/port_group.h
+++ b/gtk2_ardour/port_group.h
@@ -122,13 +122,15 @@ class PortGroupList : public sigc::trackable
void resume_signals ();
List::const_iterator begin () const {
- return _groups.begin();
+ return _groups.begin ();
}
List::const_iterator end () const {
- return _groups.end();
+ return _groups.end ();
}
+ bool empty () const;
+
sigc::signal<void> Changed;
sigc::signal<void, ARDOUR::Bundle::Change> BundleChanged;