[MSUTB][SDK] Add Language Bar dialogs (#6422)

Supporting Language Bar...
JIRA issue: CORE-19363
- Add IDD_CLOSELANGBAR and
  IDD_MINIMIZELANGBAR
  resource dialogs.
- Implement CUTBLangBarDlg class.
- Implement CUTBCloseLangBarDlg
  and CUTBMinimizeLangBarDlg
  classes.
This commit is contained in:
Katayama Hirofumi MZ 2024-01-30 15:38:53 +09:00 committed by GitHub
parent 1001b59a06
commit 934cd46df5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 306 additions and 1 deletions

View file

@ -5180,7 +5180,7 @@ CUIFBalloonWindow::AddButton(UINT nCommandId)
#ifdef IDS_OK
extern HINSTANCE g_hInst;
WCHAR szText[64];
::LoadStringW(g_hInst, IDS_OK + nCommandId, szText, _countof(szText));
::LoadStringW(g_hInst, IDS_OK + (nCommandId - IDOK), szText, _countof(szText));
pszText = szText;
#else
switch (nCommandId)