diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-03-15 09:20:32 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-03-15 09:20:32 +0000 |
commit | 180d55bf71b0c08a9e527ca45393ba5638ca9a40 (patch) | |
tree | 713a55dbb70bca3354e6898f4d5464548512ac22 /plugins/MyDetails/src/data.cpp | |
parent | e624b1dcc719be421ed8530885ca1b259fe59fdf (diff) |
MyDetails: Proper fix for not showing virtual protocols (related to r8566)
git-svn-id: http://svn.miranda-ng.org/main/trunk@8610 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MyDetails/src/data.cpp')
-rw-r--r-- | plugins/MyDetails/src/data.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MyDetails/src/data.cpp b/plugins/MyDetails/src/data.cpp index e1bc9a57b5..585c403a81 100644 --- a/plugins/MyDetails/src/data.cpp +++ b/plugins/MyDetails/src/data.cpp @@ -34,7 +34,7 @@ void InitProtocolData() for (int i = 0; i < count; i++) {
PROTOACCOUNT* acc = protos[i];
- if (acc->szModuleName == NULL || acc->szModuleName[0] == '\0' || acc->bOldProto)
+ if (acc->szModuleName == NULL || acc->szModuleName[0] == '\0' || acc->bIsVirtual)
continue;
// Found a protocol
|