summaryrefslogtreecommitdiff
path: root/plugins/SkypeStatusChange/src/stdafx.h
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2019-07-21 19:59:18 +0300
committerdartraiden <wowemuh@gmail.com>2019-07-21 19:59:18 +0300
commitb078dfb78c89aea87cd422eae52694738e473cf3 (patch)
treeca896e82a8a5ce81f80d041f4aee7fdeeb007162 /plugins/SkypeStatusChange/src/stdafx.h
parentee7e29d02e94e969c1154515cd0c408c591a2414 (diff)
Restore "Free for chat" status support (fixes #1963)
Diffstat (limited to 'plugins/SkypeStatusChange/src/stdafx.h')
-rw-r--r--plugins/SkypeStatusChange/src/stdafx.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/SkypeStatusChange/src/stdafx.h b/plugins/SkypeStatusChange/src/stdafx.h
index 20a71727e0..80a056e8ee 100644
--- a/plugins/SkypeStatusChange/src/stdafx.h
+++ b/plugins/SkypeStatusChange/src/stdafx.h
@@ -33,6 +33,7 @@ class COptions
cssLongAway = 0x00000010,
cssLightDND = 0x00000020,
cssHeavyDND = 0x00000040,
+ cssFreeChat = 0x00000080,
cssIdle = 0x00000400,
cssAll = 0x80000000
};
@@ -47,6 +48,7 @@ class COptions
case ID_STATUS_NA: return cssLongAway;
case ID_STATUS_OCCUPIED: return cssLightDND;
case ID_STATUS_DND: return cssHeavyDND;
+ case ID_STATUS_FREECHAT: return cssFreeChat;
case ID_STATUS_IDLE: return cssIdle;
}
return 0;