diff options
author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-04-27 11:28:25 +0000 |
---|---|---|
committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-04-27 11:28:25 +0000 |
commit | 2af1c301695590b94b65d92976b89380f77e7999 (patch) | |
tree | 8565ff22f338c710724c8859d3331dde942eb922 /plugins/SmileyAdd/src/smileys.h | |
parent | 1273b126536581cc9710bed760ab60a82946e857 (diff) |
SmileyAdd: fix visible options for virtual protocols
git-svn-id: http://svn.miranda-ng.org/main/trunk@13196 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SmileyAdd/src/smileys.h')
-rw-r--r-- | plugins/SmileyAdd/src/smileys.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/SmileyAdd/src/smileys.h b/plugins/SmileyAdd/src/smileys.h index 5a27cd37c0..ce1bf0a867 100644 --- a/plugins/SmileyAdd/src/smileys.h +++ b/plugins/SmileyAdd/src/smileys.h @@ -225,6 +225,7 @@ typedef enum smcNone,
smcStd,
smcProto,
+ smcVirtualProto,
smcTransportProto,
smcPhysProto,
smcCustom,
@@ -255,8 +256,9 @@ public: const CMString& GetFilename(void) const { return m_Filename; }
bool IsCustom(void) { return type == smcCustom; }
- bool IsProto(void) { return type == smcProto || type == smcPhysProto || type == smcTransportProto; }
+ bool IsProto(void) { return type == smcProto || type == smcPhysProto || type == smcTransportProto || type == smcVirtualProto; }
bool IsAcc(void) { return type == smcProto; }
+ bool IsVirtual(void) { return type == smcProto; }
bool IsPhysProto(void) { return type == smcPhysProto; }
bool IsTransportProto(void) { return type == smcTransportProto; }
bool IsExt(void) { return type == smcExt; }
|