serious bug fixes in search bar. think some could still exist

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@648 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
w1z7ard
2007-11-04 04:56:31 +00:00
parent bd3dd4e811
commit ef2a79e804
3 changed files with 21 additions and 8 deletions

View File

@ -120,7 +120,7 @@ std::auto_ptr<Preset> PresetLoader::loadPreset(unsigned int index, const PresetI
assert(index >= 0);
assert(index < m_entries.size());
// Return a new autopointer to a present
// Return a new autopointer to a preset
return std::auto_ptr<Preset>(new Preset(m_entries[index], m_presetNames[index], presetInputs, presetOutputs));
}