performance Prefer prefix ++/-- operators for non-primitive types.

Origin commit data
------------------
Branch: ni/coolstream
Commit: bb347b3a44
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-04-28 (Sat, 28 Apr 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Jacek Jendrzej
2012-04-28 10:56:27 +02:00
parent 0ce6e40d80
commit 7ec8226ad2
41 changed files with 117 additions and 117 deletions

View File

@@ -361,7 +361,7 @@ void EpgPlus::ChannelEntry::init()
EpgPlus::ChannelEntry::~ChannelEntry()
{
for (TCChannelEventEntries::iterator It = this->channelEventEntries.begin();
It != this->channelEventEntries.end(); It++) {
It != this->channelEventEntries.end(); ++It) {
delete *It;
}
this->channelEventEntries.clear();
@@ -527,7 +527,7 @@ void sectionsd_getEventsServiceKey(t_channel_id serviceUniqueKey, CChannelEventL
void EpgPlus::createChannelEntries (int selectedChannelEntryIndex)
{
for (TChannelEntries::iterator It = this->displayedChannelEntries.begin();
It != this->displayedChannelEntries.end(); It++) {
It != this->displayedChannelEntries.end(); ++It) {
delete *It;
}
this->displayedChannelEntries.clear();
@@ -1163,7 +1163,7 @@ int EpgPlus::exec (CChannelList * pchannelList, int selectedChannelIndex, CBouqu
}
while (this->refreshAll);
for (TChannelEntries::iterator It = this->displayedChannelEntries.begin();
It != this->displayedChannelEntries.end(); It++) {
It != this->displayedChannelEntries.end(); ++It) {
delete *It;
}
this->displayedChannelEntries.clear();