summaryrefslogtreecommitdiff
path: root/plugins/SimpleStatusMsg
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-08-21 18:48:58 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-08-21 18:48:58 +0300
commit56fd5bdf2a55bd26ab7a6871a930915612c3d145 (patch)
tree105cefd1e2e40bcec7f0c66e2328759a4e710850 /plugins/SimpleStatusMsg
parent98efb8dc51f734afeea7f59624e57cbafc6caa29 (diff)
fixes #4582 (SimpleStatusMsg: remove ICQ/MRA support)
Diffstat (limited to 'plugins/SimpleStatusMsg')
-rw-r--r--plugins/SimpleStatusMsg/res/resource.rc2
-rw-r--r--plugins/SimpleStatusMsg/src/options.cpp3
-rw-r--r--plugins/SimpleStatusMsg/src/resource.h1
3 files changed, 0 insertions, 6 deletions
diff --git a/plugins/SimpleStatusMsg/res/resource.rc b/plugins/SimpleStatusMsg/res/resource.rc
index 4f1924389b..b8dd2dc595 100644
--- a/plugins/SimpleStatusMsg/res/resource.rc
+++ b/plugins/SimpleStatusMsg/res/resource.rc
@@ -132,8 +132,6 @@ BEGIN
CONTROL "Spin2",IDC_SSECUPDTMSG,"msctls_updown32",UDS_WRAP | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_ARROWKEYS | UDS_NOTHOUSANDS | UDS_HOTTRACK,188,14,11,14
LTEXT "seconds",IDC_STATIC,202,16,32,8
CONTROL "Do not update variables during idle",IDC_CNOIDLE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,25,30,274,8
- CONTROL "Do not update variables on MRA status message requests",IDC_CNOICQREQ,
- "Button",BS_AUTOCHECKBOX | WS_TABSTOP,25,44,274,8
CONTROL "Leave last played track's title after exiting the player",IDC_CLEAVEWINAMP,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,25,58,274,8
CONTROL "Enable status messages parsing by Variables plugin",IDC_CVARIABLES,
diff --git a/plugins/SimpleStatusMsg/src/options.cpp b/plugins/SimpleStatusMsg/src/options.cpp
index a4a891f6b7..2247fe6199 100644
--- a/plugins/SimpleStatusMsg/src/options.cpp
+++ b/plugins/SimpleStatusMsg/src/options.cpp
@@ -954,7 +954,6 @@ static INT_PTR CALLBACK DlgVariablesOptionsProc(HWND hwndDlg, UINT uMsg, WPARAM
CheckDlgButton(hwndDlg, IDC_CUPDATEMSG, g_plugin.getByte("UpdateMsgOn", 1) ? BST_CHECKED : BST_UNCHECKED);
CheckDlgButton(hwndDlg, IDC_CNOIDLE, g_plugin.getByte("NoUpdateOnIdle", 1) ? BST_CHECKED : BST_UNCHECKED);
- CheckDlgButton(hwndDlg, IDC_CNOICQREQ, g_plugin.getByte("NoUpdateOnICQReq", 1) ? BST_CHECKED : BST_UNCHECKED);
CheckDlgButton(hwndDlg, IDC_CLEAVEWINAMP, g_plugin.getByte("AmpLeaveTitle", 1) ? BST_CHECKED : BST_UNCHECKED);
if (ServiceExists(MS_VARS_FORMATSTRING)) {
CheckDlgButton(hwndDlg, IDC_CVARIABLES, g_plugin.getByte("EnableVariables", 1) ? BST_CHECKED : BST_UNCHECKED);
@@ -975,7 +974,6 @@ static INT_PTR CALLBACK DlgVariablesOptionsProc(HWND hwndDlg, UINT uMsg, WPARAM
EnableWindow(GetDlgItem(hwndDlg, IDC_ESECUPDTMSG), bChecked);
EnableWindow(GetDlgItem(hwndDlg, IDC_SSECUPDTMSG), bChecked);
EnableWindow(GetDlgItem(hwndDlg, IDC_CNOIDLE), bChecked);
- EnableWindow(GetDlgItem(hwndDlg, IDC_CNOICQREQ), bChecked);
EnableWindow(GetDlgItem(hwndDlg, IDC_CLEAVEWINAMP), bChecked);
break;
}
@@ -1019,7 +1017,6 @@ static INT_PTR CALLBACK DlgVariablesOptionsProc(HWND hwndDlg, UINT uMsg, WPARAM
}
g_plugin.setByte("NoUpdateOnIdle", (uint8_t)(IsDlgButtonChecked(hwndDlg, IDC_CNOIDLE) == BST_CHECKED));
- g_plugin.setByte("NoUpdateOnICQReq", (uint8_t)(IsDlgButtonChecked(hwndDlg, IDC_CNOICQREQ) == BST_CHECKED));
g_plugin.setByte("AmpLeaveTitle", (uint8_t)(IsDlgButtonChecked(hwndDlg, IDC_CLEAVEWINAMP) == BST_CHECKED));
if (ServiceExists(MS_VARS_FORMATSTRING)) {
g_plugin.setByte("EnableVariables", (uint8_t)(IsDlgButtonChecked(hwndDlg, IDC_CVARIABLES) == BST_CHECKED));
diff --git a/plugins/SimpleStatusMsg/src/resource.h b/plugins/SimpleStatusMsg/src/resource.h
index 1270b4544f..82e78ad6d0 100644
--- a/plugins/SimpleStatusMsg/src/resource.h
+++ b/plugins/SimpleStatusMsg/src/resource.h
@@ -72,7 +72,6 @@
#define IDC_BDEL 1054
#define IDC_BCLEAR 1055
#define IDC_CNOIDLE 1056
-#define IDC_CNOICQREQ 1057
#define IDC_CVARIABLES 1058
#define IDC_CDATEPARSING 1059
#define IDC_MAXLENGTH 1060