Fixed bug at17021.

This commit is contained in:
David Anderson
2005-08-17 16:41:38 +00:00
parent 572ad38366
commit 4e8eff3e04
4 changed files with 12 additions and 14 deletions

View File

@ -244,18 +244,12 @@ void CPluginMngr::CPlugin::Finalize()
}
}
void CPluginMngr::CPlugin::pauseFunction( int id ) {
if (isValid()){
paused_fun |= (1<<id);
g_commands.clearBufforedInfo();
}
void CPluginMngr::CPlugin::pauseFunction( int id )
{
}
void CPluginMngr::CPlugin::unpauseFunction( int id ) {
if (isValid()) {
paused_fun &= ~(1<<id);
g_commands.clearBufforedInfo();
}
void CPluginMngr::CPlugin::unpauseFunction( int id )
{
}
void CPluginMngr::CPlugin::setStatus( int a ) {