make dummyEffect really work in case we need it

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/branches/lmms-mv@637 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-01-03 00:55:21 +00:00
parent ce128add00
commit e07c7fccee
3 changed files with 33 additions and 5 deletions

View File

@@ -4,7 +4,7 @@
* effect.cpp - base-class for effects
*
* Copyright (c) 2006-2007 Danny McRae <khjklujn/at/users.sourceforge.net>
* Copyright (c) 2006-2007 Tobias Doerffel <tobydox/at/users.sourceforge.net>
* Copyright (c) 2006-2008 Tobias Doerffel <tobydox/at/users.sourceforge.net>
*
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
*
@@ -35,7 +35,7 @@
effect::effect( const plugin::descriptor * _desc,
const descriptor::subPluginFeatures::key * _key ) :
plugin( _desc ),
m_key( *_key ),
m_key( _key ? *_key : descriptor::subPluginFeatures::key() ),
m_okay( TRUE ),
m_noRun( FALSE ),
m_running( FALSE ),