From 39d5400b39c8089287d5d294becae1268d232d31 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 7 Feb 2007 03:22:42 +0000 Subject: Mad sed-fu for consistent private member naming. git-svn-id: http://svn.drobilla.net/lad/ingen@286 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/InputPort.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/libs/engine/InputPort.h') diff --git a/src/libs/engine/InputPort.h b/src/libs/engine/InputPort.h index 1fc90246..bb6f0560 100644 --- a/src/libs/engine/InputPort.h +++ b/src/libs/engine/InputPort.h @@ -53,11 +53,11 @@ public: void add_connection(ListNode*>* const c); ListNode*>* remove_connection(const OutputPort* const src_port); - const List*>& connections() { return m_connections; } + const List*>& connections() { return _connections; } void process(SampleCount nframes, FrameTime start, FrameTime end); - bool is_connected() const { return (m_connections.size() > 0); } + bool is_connected() const { return (_connections.size() > 0); } bool is_connected_to(const OutputPort* const port) const; bool is_input() const { return true; } @@ -67,14 +67,14 @@ public: private: - List*> m_connections; + List*> _connections; // This is just stupid... - using TypedPort::m_buffers; + using TypedPort::_buffers; using TypedPort::_poly; using TypedPort::_index; using TypedPort::_buffer_size; - using TypedPort::m_fixed_buffers; + using TypedPort::_fixed_buffers; }; -- cgit v1.2.1