diff options
author | George Hazan <ghazan@miranda.im> | 2019-05-27 18:45:43 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-05-27 18:45:43 +0300 |
commit | ef1a349d88912a89a8dd20ca1dcb342b6dc9c2ff (patch) | |
tree | 78e6344d923966b7a8f1866763d6bacaf054a9e2 /include/delphi/statusmodes.inc | |
parent | 189f6be24f11066a3c711b783cf98f79f703e3a5 (diff) |
fixes #1963 (Remove Free for Chat, On the Phone and Out to Lunch statuses completely)
Diffstat (limited to 'include/delphi/statusmodes.inc')
-rw-r--r-- | include/delphi/statusmodes.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/delphi/statusmodes.inc b/include/delphi/statusmodes.inc index e555c80a4b..795522d856 100644 --- a/include/delphi/statusmodes.inc +++ b/include/delphi/statusmodes.inc @@ -41,12 +41,12 @@ const ID_STATUS_DND = 40074;
ID_STATUS_NA = 40075;
ID_STATUS_OCCUPIED = 40076;
- ID_STATUS_FREECHAT = 40077;
- ID_STATUS_INVISIBLE = 40078;
- ID_STATUS_ONTHEPHONE = 40079;
- ID_STATUS_OUTTOLUNCH = 40080;
+ ID_STATUS_INVISIBLE = 40077;
ID_STATUS_IDLE = 40081; // do not use as a status
- MAX_STATUS_COUNT = (ID_STATUS_OUTTOLUNCH-ID_STATUS_OFFLINE+1);
+ ID_STATUS_MIN = ID_STATUS_OFFLINE;
+ ID_STATUS_MAX = ID_STATUS_INVISIBLE;
+
+ MAX_STATUS_COUNT = (ID_STATUS_INVISIBLE-ID_STATUS_OFFLINE+1);
{$ENDIF}
|