summaryrefslogtreecommitdiff
path: root/plugins/Clist_modern/src
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-08-21 18:26:10 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-08-21 18:26:10 +0300
commitc8fda9a3250d3a14545b3dbdc705ca629909415a (patch)
tree299e0e6bcf1465ec722d2152e6971a8d282d5926 /plugins/Clist_modern/src
parentc30eb758d6ad5c2bdd75e49a5fa7125fb2e439f0 (diff)
fixes #4588 (Clist_modern: remove ICQ support)
Diffstat (limited to 'plugins/Clist_modern/src')
-rw-r--r--plugins/Clist_modern/src/modern_clcopts.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/plugins/Clist_modern/src/modern_clcopts.cpp b/plugins/Clist_modern/src/modern_clcopts.cpp
index 0710c43f8d..a556d00ce9 100644
--- a/plugins/Clist_modern/src/modern_clcopts.cpp
+++ b/plugins/Clist_modern/src/modern_clcopts.cpp
@@ -967,26 +967,6 @@ static INT_PTR CALLBACK DlgProcClistWindowOpts(HWND hwndDlg, UINT msg, WPARAM wP
db_free(&dbv);
SendDlgItemMessage(hwndDlg, IDC_TITLETEXT, CB_ADDSTRING, 0, (LPARAM)MIRANDANAME);
-
- char szUin[20];
- mir_snprintf(szUin, "%u", db_get_dw(0, "ICQ", "UIN", 0));
- SendDlgItemMessage(hwndDlg, IDC_TITLETEXT, CB_ADDSTRING, 0, (LPARAM)szUin);
-
- if (!db_get_s(0, "ICQ", "Nick", &dbv)) {
- SendDlgItemMessage(hwndDlg, IDC_TITLETEXT, CB_ADDSTRING, 0, (LPARAM)dbv.pszVal);
- db_free(&dbv);
- dbv.pszVal = nullptr;
- }
- if (!db_get_s(0, "ICQ", "FirstName", &dbv)) {
- SendDlgItemMessage(hwndDlg, IDC_TITLETEXT, CB_ADDSTRING, 0, (LPARAM)dbv.pszVal);
- db_free(&dbv);
- dbv.pszVal = nullptr;
- }
- if (!db_get_s(0, "ICQ", "e-mail", &dbv)) {
- SendDlgItemMessage(hwndDlg, IDC_TITLETEXT, CB_ADDSTRING, 0, (LPARAM)dbv.pszVal);
- db_free(&dbv);
- dbv.pszVal = nullptr;
- }
}
CheckDlgButton(hwndDlg, IDC_TRANSPARENT, g_plugin.getByte("Transparent", SETTING_TRANSPARENT_DEFAULT) ? BST_CHECKED : BST_UNCHECKED);
if (BST_UNCHECKED == IsDlgButtonChecked(hwndDlg, IDC_TRANSPARENT)) {