fix comments
Stefan Schuermans

Stefan Schuermans commited on 2011-10-24 20:08:26
Showing 1 changed files, with 2 additions and 2 deletions.

... ...
@@ -101,7 +101,7 @@ void Player::updatePlaylist()
101 101
     // movie changed (=> remove and re-insert in next iteration)
102 102
     else if (itFile == curFiles.end() || *itFile > itEntry->m_name ||
103 103
              itEntry->m_file.checkModified()) {
104
-      // check if movie to remov movie is current movie
104
+      // check if movie to remove is current movie
105 105
       if (itEntry == m_curEntry) {
106 106
         // advance current movie to next movie
107 107
         ++m_curEntry;
... ...
@@ -120,7 +120,7 @@ void Player::updatePlaylist()
120 120
       ++itEntry;
121 121
     }
122 122
 
123
-  } // while itFile itPlaylist
123
+  } // while itFile itEntry
124 124
 
125 125
   // current movie entry changed - or - playlist was empty and is not now
126 126
   if (bCurChg || (bWasEmpty && !m_playlist.empty())) {
127 127