diff options
author | George Hazan <ghazan@miranda.im> | 2019-06-04 12:42:13 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-06-04 12:42:13 +0300 |
commit | 88d56b4791202034588ff5b10d9c05fff3019934 (patch) | |
tree | 36641740737a9e3a92adaa75116650373a9a2943 /plugins/Nudge | |
parent | 4a1f343d8684deaaa67e6ee56f0769b8bab8d6c8 (diff) |
finally fixes #1963 (Remove Free for Chat, On the Phone and Out of Lunch statuses completely)
Diffstat (limited to 'plugins/Nudge')
-rw-r--r-- | plugins/Nudge/res/resource.rc | 5 | ||||
-rw-r--r-- | plugins/Nudge/src/options.cpp | 3 | ||||
-rw-r--r-- | plugins/Nudge/src/resource.h | 3 |
3 files changed, 1 insertions, 10 deletions
diff --git a/plugins/Nudge/res/resource.rc b/plugins/Nudge/res/resource.rc index 6cda0a870b..94c3fbc250 100644 --- a/plugins/Nudge/res/resource.rc +++ b/plugins/Nudge/res/resource.rc @@ -91,10 +91,7 @@ BEGIN CONTROL "Not available",IDC_CHECKST3,"Button",BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,18,177,58,9
CONTROL "Occupied",IDC_CHECKST4,"Button",BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,18,187,58,9
CONTROL "Do not disturb",IDC_CHECKST5,"Button",BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,84,147,72,9
- CONTROL "Free for chat",IDC_CHECKST6,"Button",BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,84,157,72,9
- CONTROL "Invisible",IDC_CHECKST7,"Button",BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,84,167,72,9
- CONTROL "On the phone",IDC_CHECKST8,"Button",BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,84,177,72,9
- CONTROL "Out to lunch",IDC_CHECKST9,"Button",BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,84,187,72,9
+ CONTROL "Invisible",IDC_CHECKST6,"Button",BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,84,157,72,9
END
IDD_OPT_SHAKE DIALOGEX 0, 0, 309, 184
diff --git a/plugins/Nudge/src/options.cpp b/plugins/Nudge/src/options.cpp index 97b1925047..4c88ba1d50 100644 --- a/plugins/Nudge/src/options.cpp +++ b/plugins/Nudge/src/options.cpp @@ -266,9 +266,6 @@ static INT_PTR CALLBACK DlgProcNudgeOpt(HWND hwnd, UINT msg, WPARAM wParam, LPAR case IDC_CHECKST4:
case IDC_CHECKST5:
case IDC_CHECKST6:
- case IDC_CHECKST7:
- case IDC_CHECKST8:
- case IDC_CHECKST9:
case IDC_CHECKPOP:
case IDC_OPENMESSAGE:
case IDC_CHECKCLIST:
diff --git a/plugins/Nudge/src/resource.h b/plugins/Nudge/src/resource.h index 6236ae9500..e6ef117378 100644 --- a/plugins/Nudge/src/resource.h +++ b/plugins/Nudge/src/resource.h @@ -48,10 +48,7 @@ #define IDC_CHECKST4 1023
#define IDC_CHECKST5 1024
#define IDC_CHECKST6 1025
-#define IDC_CHECKST7 1026
#define IDC_POPUPTEXTCOLOR 1027
-#define IDC_CHECKST8 1028
-#define IDC_CHECKST9 1029
#define IDC_BGCOLOUR 1030
#define IDC_PROTOLIST 1031
#define IDC_TEXTCOLOUR 1032
|