summaryrefslogtreecommitdiff
path: root/plugins/SeenPlugin/missed.c
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-02 20:55:18 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-02 20:55:18 +0000
commit78c0815c4118fe24ab78cce2dc48a6232dcd824a (patch)
tree8512c50df70b8dd80c919e88ade3419207c95956 /plugins/SeenPlugin/missed.c
parentce816d83a8c75808e0eb06832592bffefe4a8dc4 (diff)
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@270 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SeenPlugin/missed.c')
-rw-r--r--plugins/SeenPlugin/missed.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/SeenPlugin/missed.c b/plugins/SeenPlugin/missed.c
index f6ed40035c..179dd8ee4d 100644
--- a/plugins/SeenPlugin/missed.c
+++ b/plugins/SeenPlugin/missed.c
@@ -38,7 +38,7 @@ WPARAM IsUserMissed(WPARAM contact)
{
int loop=0;
- for(;loop<mcs.count;loop++)
+ for (;loop<mcs.count;loop++)
{
if(mcs.wpcontact[loop]==contact)
return MAKEWPARAM(1,loop);
@@ -155,9 +155,9 @@ int ShowMissed(void)
int loop=0;
char sztemp[1024]="",szcount[7];
- if(!mcs.count) return 0;
+ if (!mcs.count) return 0;
- for(;loop<mcs.count;loop++)
+ for (;loop<mcs.count;loop++)
{
strcat(sztemp,(const char *)CallService(MS_CLIST_GETCONTACTDISPLAYNAME,mcs.wpcontact[loop],0));
if(DBGetContactSettingByte(NULL,S_MOD,"MissedOnes_Count",0))
@@ -233,7 +233,7 @@ int Test(WPARAM wparam,LPARAM lparam)
{
WORD missed=IsUserMissed(wparam);
- if(!LOWORD(missed))
+ if (!LOWORD(missed))
{
mcs.times[mcs.count]=1;
mcs.wpcontact[mcs.count++]=wparam;