RemotePlugin: made lock() and unlock() methods public

Made RemotePlugin::lock() and RemotePlugin::unlock() public allowing
to use RemotePlugin class without subclassing it.
This commit is contained in:
Tobias Doerffel
2009-04-18 17:18:24 +02:00
parent 9873b880e2
commit 7200eb8158

View File

@@ -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;