diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-19 18:55:34 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-19 18:55:34 +0000 |
commit | e69dca0ea3ae985737c4bf7470653feccea02f0a (patch) | |
tree | 2844f70c6913498f3b51a40cdf9caa6a8638154b /plugins/MyDetails/data.cpp | |
parent | 405f1a1f9238fa24f749350a762695ad6e42361f (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@1050 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MyDetails/data.cpp')
-rw-r--r-- | plugins/MyDetails/data.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MyDetails/data.cpp b/plugins/MyDetails/data.cpp index 8a01c94c72..75fe7dba9c 100644 --- a/plugins/MyDetails/data.cpp +++ b/plugins/MyDetails/data.cpp @@ -221,7 +221,7 @@ void Protocol::SetStatus(int aStatus) pCount = 0;
CallService(MS_PROTO_ENUMPROTOCOLS,(WPARAM)&count,(LPARAM)&protos);
for (i=0;i<count;i++) {
- if(protos[i]->type!=PROTOTYPE_PROTOCOL || CallProtoService(protos[i]->szName,PS_GETCAPS,PFLAGNUM_2,0)==0) continue;
+ if (protos[i]->type!=PROTOTYPE_PROTOCOL || CallProtoService(protos[i]->szName,PS_GETCAPS,PFLAGNUM_2,0)==0) continue;
pCount += 1;
}
// END From commomstatus.cpp (KeepStatus)
|