summaryrefslogtreecommitdiff
path: root/plugins/New_GPG/src/messages.cpp
diff options
context:
space:
mode:
authorAlexander Gluzsky <sss123next@list.ru>2015-08-10 03:41:45 +0000
committerAlexander Gluzsky <sss123next@list.ru>2015-08-10 03:41:45 +0000
commitf3e66561e402280f6549aef2341217f2d09af214 (patch)
tree2b0e9d33035bc9d43c25a7d192db24f693d28bc9 /plugins/New_GPG/src/messages.cpp
parent623da26184c4e642d5a2bcee09091ff412aea7d4 (diff)
new_gpg:
switched to new outgoing message filtering api (fix for outgoing tags problem) git-svn-id: http://svn.miranda-ng.org/main/trunk@14891 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/New_GPG/src/messages.cpp')
-rwxr-xr-xplugins/New_GPG/src/messages.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/New_GPG/src/messages.cpp b/plugins/New_GPG/src/messages.cpp
index 3890e57e45..e80bc328ee 100755
--- a/plugins/New_GPG/src/messages.cpp
+++ b/plugins/New_GPG/src/messages.cpp
@@ -791,10 +791,13 @@ int HookSendMsg(WPARAM w, LPARAM l)
{
if(!l)
return 0;
- DBEVENTINFO * dbei = (DBEVENTINFO*)l;
+ MessageWindowEvent *ev = (MessageWindowEvent*)l;
+ DBEVENTINFO * dbei = ev->dbei;
+ if(!dbei)
+ return 0;
if(dbei->eventType != EVENTTYPE_MESSAGE)
return 0;
- MCONTACT hContact = (MCONTACT)w;
+ MCONTACT hContact = ev->hContact;
if(dbei->flags & DBEF_SENT)
{
if(isContactSecured(hContact) && strstr((char*)dbei->pBlob, "-----BEGIN PGP MESSAGE-----")) //our service data, can be double added by metacontacts e.t.c.