diff options
author | George Hazan <ghazan@miranda.im> | 2020-06-13 16:04:58 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-06-13 16:04:58 +0300 |
commit | 8862cf78b01bb4b9ae0da13b8e6acbf94f7c1cbe (patch) | |
tree | 898840f5e56f2d67ef9640f3b9763fd4bf203aef /plugins/SeenPlugin/src/stdafx.h | |
parent | 574f748253270840c63a9cf696b02d30d2f22c95 (diff) |
fixes #2446 (SeenPlugin: не работают всплывающие окна и запись изменения статуса в историю)
Diffstat (limited to 'plugins/SeenPlugin/src/stdafx.h')
-rw-r--r-- | plugins/SeenPlugin/src/stdafx.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/SeenPlugin/src/stdafx.h b/plugins/SeenPlugin/src/stdafx.h index f549c3ef0b..9f75e8522d 100644 --- a/plugins/SeenPlugin/src/stdafx.h +++ b/plugins/SeenPlugin/src/stdafx.h @@ -63,6 +63,8 @@ wchar_t *any_to_Idle(MCONTACT hContact, const char *module_name, const char *set struct CMPlugin : public PLUGIN<CMPlugin>
{
+ CMOption<bool> bUsePopups;
+
CMPlugin();
int Load() override;
@@ -135,7 +137,7 @@ extern MWindowList g_pUserInfo; extern HGENMENU hmenuitem;
extern DWORD dwmirver;
-extern BOOL g_bFileActive;
+extern bool g_bFileActive;
void LoadWatchedProtos();
void UnloadWatchedProtos();
|