diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-09-02 13:15:26 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-09-02 13:15:26 +0000 |
commit | e97507aef71bc2bfa51b08e598f21ffe7600880a (patch) | |
tree | 7d3e1ddb43c7c3fe016bfa271703edc5919ca256 /plugins/Toaster/src/stdafx.h | |
parent | b85839f935aec299520441b3a04864e9808d193b (diff) |
Toaster: support popup classes
git-svn-id: http://svn.miranda-ng.org/main/trunk@15150 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Toaster/src/stdafx.h')
-rw-r--r-- | plugins/Toaster/src/stdafx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Toaster/src/stdafx.h b/plugins/Toaster/src/stdafx.h index 86bf5bb66c..5d8fa45407 100644 --- a/plugins/Toaster/src/stdafx.h +++ b/plugins/Toaster/src/stdafx.h @@ -8,7 +8,7 @@ #include <ShObjIdl.h>
#include <propvarutil.h>
#include <memory>
-
+#include <map>
#include <newpluginapi.h>
#include <m_system_cpp.h>
#include <m_langpack.h>
@@ -56,7 +56,7 @@ struct ToastData TCHAR *tszText;
HICON hIcon;
- ToastData(MCONTACT _hContact, TCHAR *_tszTitle, TCHAR *_tszText, HICON _hIcon = NULL) : hContact(_hContact), tszTitle(mir_tstrdup(_tszTitle)), tszText(mir_tstrdup(_tszText)), hIcon(_hIcon) {}
+ ToastData(MCONTACT _hContact, const TCHAR *_tszTitle, const TCHAR *_tszText, HICON _hIcon = NULL) : hContact(_hContact), tszTitle(mir_tstrdup(_tszTitle)), tszText(mir_tstrdup(_tszText)), hIcon(_hIcon) {}
~ToastData()
{
mir_free(tszTitle);
|