diff options
author | George Hazan <ghazan@miranda.im> | 2021-06-10 16:29:02 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-06-10 16:29:02 +0300 |
commit | c6519db3afea05236cd41a144110a8a74f3daa96 (patch) | |
tree | a30afee305efb54be06a4b7bf1fafdbc6f2ce9ce /plugins/HistoryPlusPlus/hpp_options.pas | |
parent | 2ad5c23a591fb5aa4c34f1148ee565cc015d1384 (diff) |
fixes #2914 (unified empty history menu items)
Diffstat (limited to 'plugins/HistoryPlusPlus/hpp_options.pas')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_options.pas | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_options.pas b/plugins/HistoryPlusPlus/hpp_options.pas index 262452821d..103986f9e9 100644 --- a/plugins/HistoryPlusPlus/hpp_options.pas +++ b/plugins/HistoryPlusPlus/hpp_options.pas @@ -98,7 +98,7 @@ const DEFFORMAT_SELECTION = '%selmes%\n';
DEFFORMAT_DATETIME = 'c'; // ShortDateFormat + LongTimeFormat
- hppIconsDefs : array[0..32] of ThppIconsRec = (
+ hppIconsDefs : array[0..31] of ThppIconsRec = (
(name:'historypp_01'; desc:'Contact history'; group: nil; i:HPP_ICON_CONTACTHISTORY),
(name:'historypp_02'; desc:'History search'; group: nil; i:HPP_ICON_GLOBALSEARCH),
(name:'historypp_03'; desc:'Conversation divider'; group: 'Conversations'; i:HPP_ICON_SESS_DIVIDER),
@@ -115,7 +115,6 @@ const (name:'historypp_14'; desc:'Search'; group: 'Toolbar'; i:HPP_ICON_HOTSEARCH),
(name:'historypp_15'; desc:'Search Up'; group: 'Search panel'; i:HPP_ICON_SEARCHUP),
(name:'historypp_16'; desc:'Search Down'; group: 'Search panel'; i:HPP_ICON_SEARCHDOWN),
- (name:'historypp_17'; desc:'Delete All'; group: 'Toolbar'; i:HPP_ICON_TOOL_DELETEALL),
(name:'historypp_18'; desc:'Delete'; group: 'Toolbar'; i:HPP_ICON_TOOL_DELETE),
(name:'historypp_19'; desc:'Conversations'; group: 'Toolbar'; i:HPP_ICON_TOOL_SESSIONS),
(name:'historypp_20'; desc:'Save'; group: 'Toolbar'; i:HPP_ICON_TOOL_SAVE),
|