From 7200eb81587bddce7ce5cabe6b267dac00ea91c3 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sat, 18 Apr 2009 17:18:24 +0200 Subject: [PATCH] RemotePlugin: made lock() and unlock() methods public Made RemotePlugin::lock() and RemotePlugin::unlock() public allowing to use RemotePlugin class without subclassing it. --- include/remote_plugin.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/remote_plugin.h b/include/remote_plugin.h index 690391fcc..6004947d6 100644 --- a/include/remote_plugin.h +++ b/include/remote_plugin.h @@ -718,8 +718,6 @@ public: return m_failed; } - -protected: inline void lock( void ) { if( !isInvalid() ) @@ -736,6 +734,8 @@ protected: } } + +protected: inline void setSplittedChannels( bool _on ) { m_splitChannels = _on;