summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_xstatus.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-01-27 18:11:22 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-01-27 18:11:22 +0000
commit5434c7b224bafd30c382f0590a55c921dfedea54 (patch)
tree59b67c5666f5cb765d9b8de52f4c61da9cc56e6c /protocols/JabberG/src/jabber_xstatus.h
parentfb8d04451e6808b1c88116c7d6d6c473831c5a2b (diff)
- fix for the Jabber chat's Member Info dialog
- ++i -> i++ git-svn-id: http://svn.miranda-ng.org/main/trunk@3310 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_xstatus.h')
-rw-r--r--protocols/JabberG/src/jabber_xstatus.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/protocols/JabberG/src/jabber_xstatus.h b/protocols/JabberG/src/jabber_xstatus.h
index bf50a4e538..c9ffc03edd 100644
--- a/protocols/JabberG/src/jabber_xstatus.h
+++ b/protocols/JabberG/src/jabber_xstatus.h
@@ -65,7 +65,7 @@ public:
void ProcessEvent(const TCHAR *from, HXML eventNode)
{
- for (int i = 0; i < getCount(); ++i)
+ for (int i = 0; i < getCount(); i++)
{
CPepService &pepSvc = (*this)[i];
HXML itemsNode = xmlGetChildByTag(eventNode, _T("items"), _T("node"), pepSvc.GetNode());
@@ -76,43 +76,43 @@ public:
void InitGui()
{
- for (int i = 0; i < getCount(); ++i)
+ for (int i = 0; i < getCount(); i++)
(*this)[i].InitGui();
}
void RebuildMenu()
{
- for (int i = 0; i < getCount(); ++i)
+ for (int i = 0; i < getCount(); i++)
(*this)[i].RebuildMenu();
}
void ResetExtraIcon(HANDLE hContact)
{
- for (int i = 0; i < getCount(); ++i)
+ for (int i = 0; i < getCount(); i++)
(*this)[i].ResetExtraIcon(hContact);
}
void PublishAll()
{
- for (int i = 0; i < getCount(); ++i)
+ for (int i = 0; i < getCount(); i++)
(*this)[i].Publish();
}
void RetractAll()
{
- for (int i = 0; i < getCount(); ++i)
+ for (int i = 0; i < getCount(); i++)
(*this)[i].Retract();
}
void ResetPublishAll()
{
- for(int i = 0; i < getCount(); ++i)
+ for(int i = 0; i < getCount(); i++)
(*this)[i].ResetPublish();
}
CPepService *Find(TCHAR *node)
{
- for (int i = 0; i < getCount(); ++i)
+ for (int i = 0; i < getCount(); i++)
if ( !lstrcmp((*this)[i].GetNode(), node))
return &((*this)[i]);
return NULL;