diff options
author | George Hazan <ghazan@miranda.im> | 2022-08-02 18:00:02 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-08-02 18:00:02 +0300 |
commit | 8bd43ae4f790fcefecbcf1950ef4f36d1c4a6d20 (patch) | |
tree | 74fbfb11012ca3044806c48877c7677979baf884 /plugins/UserInfoEx/src/psp_anniversary.cpp | |
parent | 2daa10fc6e063ab3e4824dc22820bbe7d3ce733f (diff) |
UInfoEx: advanced options dialog -> UI classes
Diffstat (limited to 'plugins/UserInfoEx/src/psp_anniversary.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/psp_anniversary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/src/psp_anniversary.cpp b/plugins/UserInfoEx/src/psp_anniversary.cpp index 5e929ace4e..7906b47b35 100644 --- a/plugins/UserInfoEx/src/psp_anniversary.cpp +++ b/plugins/UserInfoEx/src/psp_anniversary.cpp @@ -34,7 +34,7 @@ static INT_PTR CALLBACK DlgProc_AnniversaryEditor(HWND m_hwnd, UINT uMsg, WPARAM SetUserData(m_hwnd, lParam);
// set icons
- if (g_plugin.getByte(SET_ICONS_BUTTONS, 1)) {
+ if (g_plugin.bButtonIcons) {
SendDlgItemMessage(m_hwnd, IDOK, BM_SETIMAGE, IMAGE_ICON, (LPARAM)g_plugin.getIcon(IDI_BTN_OK));
SendDlgItemMessage(m_hwnd, IDCANCEL, BM_SETIMAGE, IMAGE_ICON, (LPARAM)g_plugin.getIcon(IDI_BTN_CLOSE));
}
|