From 738387f9a417537e768d56d3fc4afcb9dc82d66b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 20 Dec 2009 16:50:41 +0000 Subject: remove a couple of boost::signals2 trouble spots; fix some --strict compile time warnings git-svn-id: svn://localhost/ardour2/branches/3.0@6378 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session_rtevents.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libs/ardour/session_rtevents.cc') diff --git a/libs/ardour/session_rtevents.cc b/libs/ardour/session_rtevents.cc index 945e422076..7bb27db808 100644 --- a/libs/ardour/session_rtevents.cc +++ b/libs/ardour/session_rtevents.cc @@ -33,7 +33,7 @@ using namespace ARDOUR; using namespace Glib; SessionEvent* -Session::get_rt_event (boost::shared_ptr rl, bool yn, SessionEvent::RTeventCallback after, bool group_override, +Session::get_rt_event (boost::shared_ptr rl, bool yn, SessionEvent::RTeventCallback after, bool group_override, void (Session::*method) (boost::shared_ptr, bool, bool)) { SessionEvent* ev = new SessionEvent (SessionEvent::RealTimeOperation, SessionEvent::Add, SessionEvent::Immediate, 0, 0.0); @@ -51,7 +51,7 @@ Session::set_solo (boost::shared_ptr rl, bool yn, SessionEvent::RTeve } void -Session::rt_set_solo (boost::shared_ptr rl, bool yn, bool group_override) +Session::rt_set_solo (boost::shared_ptr rl, bool yn, bool /* group_override */) { for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) { if (!(*i)->is_hidden()) { @@ -100,7 +100,7 @@ Session::set_listen (boost::shared_ptr rl, bool yn, SessionEvent::RTe } void -Session::rt_set_listen (boost::shared_ptr rl, bool yn, bool group_override) +Session::rt_set_listen (boost::shared_ptr rl, bool yn, bool /*group_override*/ ) { for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) { if (!(*i)->is_hidden()) { @@ -118,7 +118,7 @@ Session::set_mute (boost::shared_ptr rl, bool yn, SessionEvent::RTeve } void -Session::rt_set_mute (boost::shared_ptr rl, bool yn, bool group_override) +Session::rt_set_mute (boost::shared_ptr rl, bool yn, bool /*group_override*/) { for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) { if (!(*i)->is_hidden()) { -- cgit v1.2.3