summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_xstatus.h
diff options
context:
space:
mode:
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;