From 8f1a8e25c6418fd4bb53036d401a64d727cef045 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Fri, 18 Jul 2014 10:53:06 +0000 Subject: Status change event handling restored (for NXSN) git-svn-id: http://svn.miranda-ng.org/main/trunk@9843 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/HistoryPlusPlus/hpp_events.pas | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/HistoryPlusPlus/hpp_events.pas b/plugins/HistoryPlusPlus/hpp_events.pas index 821498c4e1..69cc3aef2c 100644 --- a/plugins/HistoryPlusPlus/hpp_events.pas +++ b/plugins/HistoryPlusPlus/hpp_events.pas @@ -91,6 +91,7 @@ const ); const + EVENTTYPE_STATUSCHANGE = 25368; // from srmm's EVENTTYPE_SMTPSIMPLE = 2350; // from SMTP Simple EVENTTYPE_NICKNAMECHANGE = 9001; // from pescuma EVENTTYPE_STATUSMESSAGECHANGE = 9002; // from pescuma @@ -184,7 +185,7 @@ type end; var - EventTable: array[0..27] of TEventTableItem = ( + EventTable: array[0..28] of TEventTableItem = ( // must be the first item in array for unknown events (EventType: MaxWord; MessageType: mtOther; TextFunction: GetEventTextForOther), // events definitions @@ -194,6 +195,7 @@ var (EventType: EVENTTYPE_AUTHREQUEST; MessageType: mtSystem; TextFunction: GetEventTextForAuthRequest), (EventType: EVENTTYPE_ADDED; MessageType: mtSystem; TextFunction: GetEventTextForYouWereAdded), (EventType: EVENTTYPE_CONTACTS; MessageType: mtContacts; TextFunction: GetEventTextForContacts), + (EventType: EVENTTYPE_STATUSCHANGE; MessageType: mtStatus; TextFunction: GetEventTextForStatusChange), (EventType: EVENTTYPE_SMTPSIMPLE; MessageType: mtSMTPSimple; TextFunction: GetEventTextForMessage), (EventType: ICQEVENTTYPE_SMS; MessageType: mtSMS; TextFunction: GetEventTextForSMS), (EventType: ICQEVENTTYPE_WEBPAGER; MessageType: mtWebPager; TextFunction: GetEventTextForWebPager), -- cgit v1.2.3