summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-30 02:27:52 +0200
committerRobin Gareus <robin@gareus.org>2017-07-30 02:42:55 +0200
commitea48c56061aa7324b076ab01ee408005a46bae8e (patch)
treec06854bd957bb7c76c91e64dd525126668031fd1 /libs/pbd/pbd
parentfe5f00c36790997ae4de62068c49f98c5d3bede9 (diff)
NO-OP: name-change (_list and _lock are also used in other places)
Derived classes need to explicitly specify namespace and class to avoid ambiguities (even for private members)
Diffstat (limited to 'libs/pbd/pbd')
-rw-r--r--libs/pbd/pbd/signals.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/pbd/pbd/signals.h b/libs/pbd/pbd/signals.h
index df4c9cef29..9640008591 100644
--- a/libs/pbd/pbd/signals.h
+++ b/libs/pbd/pbd/signals.h
@@ -191,10 +191,10 @@ class LIBPBD_API ScopedConnectionList : public boost::noncopyable
one from another.
*/
- Glib::Threads::Mutex _lock;
+ Glib::Threads::Mutex _scoped_connection_lock;
typedef std::list<ScopedConnection*> ConnectionList;
- ConnectionList _list;
+ ConnectionList _scoped_connection_list;
};
#include "pbd/signals_generated.h"