diff options
author | George Hazan <ghazan@miranda.im> | 2022-09-12 10:50:47 -0700 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-09-12 10:50:47 -0700 |
commit | c37dd53c975775172b6e225dca188bcb1102b5a8 (patch) | |
tree | f3100daf07ca3f4ceddecc84fbe4033d610f87b2 /plugins/WhenWasIt/src | |
parent | d297561a9c43d05da7f6cbe04dfd73b6b5032aca (diff) |
fixes #3172 (WhenWasIt window no more accesible for screenreaders)
Diffstat (limited to 'plugins/WhenWasIt/src')
-rw-r--r-- | plugins/WhenWasIt/src/notifiers.cpp | 2 | ||||
-rw-r--r-- | plugins/WhenWasIt/src/resource.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/plugins/WhenWasIt/src/notifiers.cpp b/plugins/WhenWasIt/src/notifiers.cpp index 7c40bb8995..deb357fcf2 100644 --- a/plugins/WhenWasIt/src/notifiers.cpp +++ b/plugins/WhenWasIt/src/notifiers.cpp @@ -263,7 +263,7 @@ public: int DialogNotifyBirthday(MCONTACT hContact, int dtb, int age)
{
wchar_t text[1024];
- BuildDABText(dtb, Clist_GetContactDisplayName(hContact), text, _countof(text));
+ BuildDTBText(dtb, Clist_GetContactDisplayName(hContact), text, _countof(text));
if (!g_pUpcomingDlg) {
g_pUpcomingDlg = new CUpcomingDlg();
diff --git a/plugins/WhenWasIt/src/resource.h b/plugins/WhenWasIt/src/resource.h index debc690fbe..f2545e7eb6 100644 --- a/plugins/WhenWasIt/src/resource.h +++ b/plugins/WhenWasIt/src/resource.h @@ -54,7 +54,6 @@ #define IDC_ANNIVERSARY 1040
#define IDC_EDIT1 1042
#define IDC_DLG_TIMEOUT 1042
-#define IDC_UPCOMING_LIST 1043
#define IDC_DIALOG_STATIC 1044
#define IDC_NOTIFYFOR 1045
#define IDC_DAYS_AFTER 1046
|