aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-12-08 09:12:06 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-12-08 09:12:06 +0000
commit6fd0672ae5d0a14d53ffdaa3c82883264b54b4ce (patch)
treef0d53ebe703bffd50d82e9b1e505599276dfe5d2
parent230bf34001ea8ec278aa2fa65a1749a95babc066 (diff)
downloadqmmp-6fd0672ae5d0a14d53ffdaa3c82883264b54b4ce.tar.gz
qmmp-6fd0672ae5d0a14d53ffdaa3c82883264b54b4ce.tar.bz2
qmmp-6fd0672ae5d0a14d53ffdaa3c82883264b54b4ce.zip
fixed typo
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3040 90c681e8-e032-0410-971d-27865f9a5e38
-rw-r--r--src/qmmp/qmmpaudioengine.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/qmmp/qmmpaudioengine.cpp b/src/qmmp/qmmpaudioengine.cpp
index 8592067df..62612b990 100644
--- a/src/qmmp/qmmpaudioengine.cpp
+++ b/src/qmmp/qmmpaudioengine.cpp
@@ -532,7 +532,7 @@ OutputWriter *QmmpAudioEngine::createOutput()
delete output;
output = 0;
StateHandler::instance()->dispatch(Qmmp::FatalError);
- return false;
+ return 0;
}
if(m_output_buf)
delete [] m_output_buf;
@@ -555,7 +555,7 @@ void QmmpAudioEngine::prepareEffects(Decoder *d)
delete e;
}
}
- QList <Effect *> m_tmp_effects = m_effects;
+ QList <Effect *> tmp_effects = m_effects;
m_effects.clear();
if(m_settings->use16BitOutput())
@@ -571,7 +571,7 @@ void QmmpAudioEngine::prepareEffects(Decoder *d)
continue;
Effect *effect = 0;
- foreach(Effect *e, m_tmp_effects) //find effect
+ foreach(Effect *e, tmp_effects) //find effect
{
if(e->factory() == factory)
effect = e;
@@ -581,7 +581,7 @@ void QmmpAudioEngine::prepareEffects(Decoder *d)
m_blockedEffects.contains(effect))) //destroy effect which require restart
{
m_blockedEffects.removeAll(effect);
- m_tmp_effects.removeAll(effect);
+ tmp_effects.removeAll(effect);
delete effect;
effect = 0;
}
@@ -596,7 +596,7 @@ void QmmpAudioEngine::prepareEffects(Decoder *d)
}
}
m_effects << effect;
- m_tmp_effects.removeAll(effect);
+ tmp_effects.removeAll(effect);
}
m_chan = m_ap.channels();
}