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/progs/ingenuity/PatchPortModule.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/progs/ingenuity/PatchPortModule.h') diff --git a/src/progs/ingenuity/PatchPortModule.h b/src/progs/ingenuity/PatchPortModule.h index e6f30bec..3cfccae1 100644 --- a/src/progs/ingenuity/PatchPortModule.h +++ b/src/progs/ingenuity/PatchPortModule.h @@ -54,9 +54,9 @@ public: virtual void store_location(); - //void on_right_click(GdkEventButton* event) { m_port->show_menu(event); } + //void on_right_click(GdkEventButton* event) { _port->show_menu(event); } - SharedPtr port() const { return m_port; } + SharedPtr port() const { return _port; } protected: PatchPortModule(boost::shared_ptr canvas, SharedPtr port); @@ -66,8 +66,8 @@ protected: void metadata_update(const string& key, const Raul::Atom& value); - SharedPtr m_port; - boost::shared_ptr m_patch_port; ///< Port on this 'anonymous' module + SharedPtr _port; + boost::shared_ptr _patch_port; ///< Port on this 'anonymous' module }; -- cgit v1.2.1