Skip to content

Commit

Permalink
Change postfix increment to prefix.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Aug 24, 2011
1 parent 6a2f7e9 commit a29c732
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mythplugins/mythmusic/mythmusic/musiccommon.cpp
Expand Up @@ -1321,7 +1321,7 @@ void MusicCommon::updateUIPlaylist(void)

QList<Track*> songlist = playlist->getSongs();
QList<Track*>::iterator it = songlist.begin();
for (; it != songlist.end(); it++)
for (; it != songlist.end(); ++it)
{
int trackid = (*it)->getValue();
Metadata *mdata = gMusicData->all_music->getMetadata(trackid);
Expand Down
2 changes: 1 addition & 1 deletion mythplugins/mythzoneminder/mythzoneminder/zmevents.cpp
Expand Up @@ -328,7 +328,7 @@ void ZMEvents::deletePressed(void)
delete item;

vector<Event*>::iterator it;
for (it = m_eventList->begin(); it != m_eventList->end(); it++)
for (it = m_eventList->begin(); it != m_eventList->end(); ++it)
{
if (*it == event)
{
Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmyth/mythmediamonitor.cpp
Expand Up @@ -399,7 +399,7 @@ void MediaMonitor::CheckDevices(void)
pDev = *itr;
if (pDev)
pDev->checkMedia();
itr++;
++itr;
}
}

Expand Down

0 comments on commit a29c732

Please sign in to comment.