summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rwxr-xr-x[-rw-r--r--]plugins/New_GPG/src/init.cpp3
-rwxr-xr-xplugins/New_GPG/src/messages.cpp7
2 files changed, 7 insertions, 3 deletions
diff --git a/plugins/New_GPG/src/init.cpp b/plugins/New_GPG/src/init.cpp
index 2e30326e0f..b238e954a3 100644..100755
--- a/plugins/New_GPG/src/init.cpp
+++ b/plugins/New_GPG/src/init.cpp
@@ -142,7 +142,8 @@ static int OnModulesLoaded(WPARAM, LPARAM)
GetJabberInterface(0,0);
HookEvent(ME_OPT_INITIALISE, GpgOptInit);
- HookEvent(ME_DB_EVENT_FILTER_ADD, HookSendMsg);
+ //HookEvent(ME_DB_EVENT_FILTER_ADD, HookSendMsg);
+ HookEvent(ME_MSG_PRECREATEEVENT, HookSendMsg);
if(bJabberAPI && bIsMiranda09)
HookEvent(ME_PROTO_ACCLISTCHANGED, GetJabberInterface);
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.