1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-26 00:03:52 +02:00

Fix some old typos, indentations.

Clarify some comments. 

Remove some DirManager methods that were declared but not defined.
This commit is contained in:
v.audacity
2010-08-25 23:24:02 +00:00
parent 536af8ad52
commit ad09727b7f
4 changed files with 14 additions and 23 deletions

View File

@@ -323,13 +323,13 @@ Track *TrackListIterator::Last(bool skiplinked)
return NULL;
}
Track *TrackListIterator::Next(bool SkipLinked)
Track *TrackListIterator::Next(bool skipLinked)
{
#ifdef DEBUG_TLI // if we are debugging this bit
wxASSERT_MSG((!cur || (*l).Contains((*cur).t)), wxT("cur invalid at start of Next(). List changed since iterator created?")); // check that cur is in the list
#endif
if (SkipLinked && cur && cur->t->GetLinked()) {
if (skipLinked && cur && cur->t->GetLinked()) {
cur = cur->next;
}