diff options
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_global.pas | 4 | ||||
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_options.pas | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_global.pas b/plugins/HistoryPlusPlus/hpp_global.pas index b5aca8ae37..38ae093051 100644 --- a/plugins/HistoryPlusPlus/hpp_global.pas +++ b/plugins/HistoryPlusPlus/hpp_global.pas @@ -63,10 +63,10 @@ type // be show as the last entry
TMessageType = (mtUnknown,
mtIncoming, mtOutgoing,
- mtMessage, mtFile, mtSystem,
+ mtMessage, mtUrl, mtFile, mtSystem,
mtContacts, mtStatus, mtSMTPSimple,
mtOther,
- mtNickChange,mtAvatarChange,mtWATrack,mtStatusMessage,mtVoiceCall,mtCustom, mtUrl);
+ mtNickChange,mtAvatarChange,mtWATrack,mtStatusMessage,mtVoiceCall,mtCustom);
PMessageTypes = ^TMessageTypes;
TMessageTypes = set of TMessageType;
diff --git a/plugins/HistoryPlusPlus/hpp_options.pas b/plugins/HistoryPlusPlus/hpp_options.pas index a994f97c5e..262452821d 100644 --- a/plugins/HistoryPlusPlus/hpp_options.pas +++ b/plugins/HistoryPlusPlus/hpp_options.pas @@ -156,11 +156,11 @@ const (_type: [hppFont,hppColor]; name: 'Outgoing file';
Mes: [mtFile,mtOutgoing]; style:0; size: -11; color: $000000; back: $9BEEE3),
- (_type: [hppFont,hppColor]; name: 'Unused';
- Mes: [mtIncoming]; style:0; size: -11; color: $000000; back: $F4D9CC),
+ (_type: [hppFont,hppColor]; name: 'Incoming url';
+ Mes: [mtUrl,mtIncoming]; style:0; size: -11; color: $000000; back: $F4D9CC),
- (_type: [hppFont,hppColor]; name: 'Unused';
- Mes: [mtOutgoing]; style:0; size: -11; color: $000000; back: $F4D9CC),
+ (_type: [hppFont,hppColor]; name: 'Outgoing url';
+ Mes: [mtUrl,mtOutgoing]; style:0; size: -11; color: $000000; back: $F4D9CC),
(_type: [hppFont,hppColor]; name: 'Unused';
Mes: [mtIncoming]; style:0; size: -11; color: $000000; back: $CFF4FE),
|