diff options
Diffstat (limited to 'plugins/Scriver/src')
| -rw-r--r-- | plugins/Scriver/src/globals.cpp | 5 | ||||
| -rw-r--r-- | plugins/Scriver/src/msgs.cpp | 2 | 
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/Scriver/src/globals.cpp b/plugins/Scriver/src/globals.cpp index c69337ff02..d9486bba85 100644 --- a/plugins/Scriver/src/globals.cpp +++ b/plugins/Scriver/src/globals.cpp @@ -453,11 +453,12 @@ static int ackevent(WPARAM wParam, LPARAM lParam)  	if ( !( item->flags & PREF_UTF ))
  		dbei.cbBlob *= sizeof(TCHAR) + 1;
  	dbei.pBlob = (PBYTE) item->sendBuffer;
 -	HANDLE hNewEvent = db_event_add(item->hContact, &dbei);
 -	MessageWindowEvent evt = { sizeof(evt), (int)item->hSendId, item->hContact, hNewEvent };
 +	MessageWindowEvent evt = { sizeof(evt), (int)item->hSendId, item->hContact, &dbei };
  	NotifyEventHooks(hHookWinWrite, 0, (LPARAM)&evt);
 +	db_event_add(item->hContact, &dbei);
 +
  	if (item->hwndErrorDlg != NULL)
  		DestroyWindow(item->hwndErrorDlg);
 diff --git a/plugins/Scriver/src/msgs.cpp b/plugins/Scriver/src/msgs.cpp index 85b8df532d..f98dc86fe8 100644 --- a/plugins/Scriver/src/msgs.cpp +++ b/plugins/Scriver/src/msgs.cpp @@ -536,7 +536,7 @@ int OnLoadModule(void)  	hHookWinEvt = CreateHookableEvent(ME_MSG_WINDOWEVENT);
  	hHookWinPopup = CreateHookableEvent(ME_MSG_WINDOWPOPUP);
 -	hHookWinWrite = CreateHookableEvent(ME_MSG_WRITEEVENT);
 +	hHookWinWrite = CreateHookableEvent(ME_MSG_PRECREATEEVENT);
  	SkinAddNewSoundEx("RecvMsgActive", LPGEN("Instant messages"), LPGEN("Incoming (Focused Window)"));
  	SkinAddNewSoundEx("RecvMsgInactive", LPGEN("Instant messages"), LPGEN("Incoming (Unfocused Window)"));
  | 
