remove old call_the_mothership code
[ardour.git] / libs / ardour / session_handle.cc
index f36fff47850298b54a51a9f16c111d77dd809afa..e9284b7c9849e431936253a043edff1f5cab61a5 100644 (file)
@@ -31,12 +31,12 @@ using namespace ARDOUR;
 using namespace PBD;
 
 SessionHandlePtr::SessionHandlePtr (Session* s)
-       : _session (s) 
+       : _session (s)
 {
        if (_session) {
                _session->DropReferences.connect_same_thread (_session_connections, boost::bind (&SessionHandlePtr::session_going_away, this));
        }
-}      
+}
 
 void
 SessionHandlePtr::set_session (Session* s)
@@ -63,11 +63,11 @@ SessionHandlePtr::session_going_away ()
 
 
 SessionHandleRef::SessionHandleRef (Session& s)
-       : _session (s) 
+       : _session (s)
 {
        _session.DropReferences.connect_same_thread (*this, boost::bind (&SessionHandleRef::session_going_away, this));
        _session.Destroyed.connect_same_thread (*this, boost::bind (&SessionHandleRef::insanity_check, this));
-}      
+}
 
 SessionHandleRef::~SessionHandleRef ()
 {
@@ -85,7 +85,7 @@ SessionHandleRef::insanity_check ()
 {
        cerr << string_compose (
                _("programming error: %1"),
-               string_compose("SessionHandleRef exists across sesssion deletion! Dynamic type: %1",
-                              PBD::demangled_name (*this)))
+               string_compose("SessionHandleRef exists across session deletion! Dynamic type: %1 @ %2",
+                              PBD::demangled_name (*this), this))
             << endl;
 }