summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-02-06 21:00:35 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-02-06 21:00:35 +0300
commit30e9a15c5487ea1c499806035083f3bf68cf1be3 (patch)
tree57c4f284d734064b517e87681e746d2a0d59caee
parent56fdabecb8a871532a30e6e403d5108e80586bf0 (diff)
fixes #1828 (ICQ10: remove gradient from settings)
-rw-r--r--protocols/ICQ-WIM/res/resources.rc4
-rw-r--r--protocols/ICQ-WIM/src/options.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/protocols/ICQ-WIM/res/resources.rc b/protocols/ICQ-WIM/res/resources.rc
index ca9456b7c1..b2ccdc6a82 100644
--- a/protocols/ICQ-WIM/res/resources.rc
+++ b/protocols/ICQ-WIM/res/resources.rc
@@ -52,11 +52,11 @@ BEGIN
CONTROL "Do not open chat windows on creation",IDC_HIDECHATS,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,61,285,10
GROUPBOX "Advanced",IDC_STATIC,4,75,302,77
- LTEXT "If a contact goes Offline, set this status instead and cache it for given timeout in seconds (0 - disabled)",IDC_STATIC,12,88,204,23,0,WS_EX_DLGMODALFRAME
+ LTEXT "If a contact goes Offline, set this status instead and cache it for given timeout in seconds (0 - disabled)",IDC_STATIC,12,88,204,23
EDITTEXT IDC_DIFF1,221,85,54,12,ES_AUTOHSCROLL
CONTROL "",IDC_SPIN1,"msctls_updown32",UDS_SETBUDDYINT | UDS_AUTOBUDDY | UDS_ARROWKEYS,275,84,11,14
COMBOBOX IDC_STATUS1,221,100,81,30,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
- LTEXT "After that, set this status to a contact and move it offline after specified timeout in seconds (0 - disabled)",IDC_STATIC,12,121,204,23,0,WS_EX_DLGMODALFRAME
+ LTEXT "After that, set this status to a contact and move it offline after specified timeout in seconds (0 - disabled)",IDC_STATIC,12,121,204,23
EDITTEXT IDC_DIFF2,221,118,54,12,ES_AUTOHSCROLL
CONTROL "",IDC_SPIN2,"msctls_updown32",UDS_SETBUDDYINT | UDS_AUTOBUDDY | UDS_ARROWKEYS,275,117,11,14
COMBOBOX IDC_STATUS2,221,133,81,30,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
diff --git a/protocols/ICQ-WIM/src/options.cpp b/protocols/ICQ-WIM/src/options.cpp
index b4706423d6..000cf891c1 100644
--- a/protocols/ICQ-WIM/src/options.cpp
+++ b/protocols/ICQ-WIM/src/options.cpp
@@ -267,7 +267,7 @@ int CIcqProto::OnOptionsInit(WPARAM wParam, LPARAM)
{
OPTIONSDIALOGPAGE odp = {};
odp.szTitle.w = m_tszUserName;
- odp.flags = ODPF_UNICODE;
+ odp.flags = ODPF_UNICODE | ODPF_BOLDGROUPS;
odp.szGroup.w = LPGENW("Network");
odp.position = 1;
odp.pDialog = new CIcqOptionsDlg(this, IDD_OPTIONS_FULL, true);