diff options
author | George Hazan <ghazan@miranda.im> | 2022-03-09 16:31:40 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-03-09 16:31:40 +0300 |
commit | be22bc76ea2ee48830dc60f5bb274953349d85f6 (patch) | |
tree | 32466abd051f3fba47d623b4d7643d12d4519359 /include/newpluginapi.h | |
parent | d387ed11456e40f36f359cb3aa9f74a54b8f369b (diff) |
fixes #3044 (Jabber: перенести опцию "Показывать всплывающие окна с ошибками" в настройки всплывающих окон)
Diffstat (limited to 'include/newpluginapi.h')
-rw-r--r-- | include/newpluginapi.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/newpluginapi.h b/include/newpluginapi.h index 99e617cd5b..7081bd4f73 100644 --- a/include/newpluginapi.h +++ b/include/newpluginapi.h @@ -210,9 +210,11 @@ public: int addEffect(struct EffectID *pEffect); int addEffect(struct EffectIDW *pEffect); + int addPopupOption(const char *pszDescr, CMOption<bool> &pVar); + int addPopupOption(const wchar_t *pwszDescr, CMOption<bool> &pVal); + int addFrame(const struct CLISTFrame*); int addHotkey(const struct HOTKEYDESC*); - int addPopupOption(const char *pszDescr, CMOption<bool> &pVar); int addSound(const char *name, const wchar_t *section, const wchar_t *description, const wchar_t *defaultFile = nullptr); int addUserInfo(WPARAM wParam, struct OPTIONSDIALOGPAGE *odp); |