diff options
author | George Hazan <ghazan@miranda.im> | 2022-03-26 15:41:27 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-03-26 15:41:27 +0300 |
commit | 90c87cac6ad51642d1dd9d9a2400450e667e1da7 (patch) | |
tree | 4cd32bab4504fdc183090bc4d4e5433735a61fe2 /include/m_hotkeys.h | |
parent | 5a0b6ba945cbbf543a5b8c6169fc3b2ee03e740f (diff) |
fixes #3057 (Унифицировать настройку горячих клавиш для отправки сообщений)
Diffstat (limited to 'include/m_hotkeys.h')
-rw-r--r-- | include/m_hotkeys.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_hotkeys.h b/include/m_hotkeys.h index d1a4adc0cf..61728eca8b 100644 --- a/include/m_hotkeys.h +++ b/include/m_hotkeys.h @@ -35,8 +35,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. struct HOTKEYDESC
{
const char *pszName; // name to refer to hotkey when playing and in db
- MAllStrings szDescription; // description for options dialog
- MAllStrings szSection; // section name used to group sounds (NULL is acceptable)
+ MAllCStrings szDescription; // description for options dialog
+ MAllCStrings szSection; // section name used to group sounds (NULL is acceptable)
const char *pszService; // Service to call when HotKey Pressed
uint16_t DefHotKey; // default hot key for action
uint32_t dwFlags; // one of HKD_* constants
|