diff options
author | George Hazan <george.hazan@gmail.com> | 2024-10-07 14:26:59 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-10-07 14:26:59 +0300 |
commit | c02b03b9853fa99fbd5d6618cbfd20ce5f99db1b (patch) | |
tree | b56c660cd0e000c56f62d0effa65650beca83e2c /plugins/Scriver/src/globals.cpp | |
parent | d154837d8b5110108a219022832744fd6daa9884 (diff) |
Scriver: useless icon removed
Diffstat (limited to 'plugins/Scriver/src/globals.cpp')
-rw-r--r-- | plugins/Scriver/src/globals.cpp | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/plugins/Scriver/src/globals.cpp b/plugins/Scriver/src/globals.cpp index 6ec8c203bd..a6e7023f36 100644 --- a/plugins/Scriver/src/globals.cpp +++ b/plugins/Scriver/src/globals.cpp @@ -28,21 +28,20 @@ GlobalMessageData g_dat; static IconItem iconList1[] =
{
{ LPGEN("Add contact"), "ADD", IDI_ADDCONTACT }, // 1
- { LPGEN("User's details"), "USERDETAILS", IDI_USERDETAILS }, // 2
- { LPGEN("User's history"), "HISTORY", IDI_HISTORY }, // 3
- { LPGEN("Send message"), "SEND", IDI_SEND }, // 4
- { LPGEN("Smiley button"), "SMILEY", IDI_SMILEY }, // 5
- { LPGEN("User is typing"), "TYPING", IDI_TYPING }, // 6
- { LPGEN("Typing notification off"), "TYPINGOFF", IDI_TYPINGOFF }, // 7
- { LPGEN("Sending"), "DELIVERING", IDI_TIMESTAMP }, // 8
- { LPGEN("Quote button"), "QUOTE", IDI_QUOTE }, // 9
- { LPGEN("Close button"), "CLOSEX", IDI_CLOSEX }, // 10
- { LPGEN("Icon overlay"), "OVERLAY", IDI_OVERLAY }, // 11
- { LPGEN("Incoming message (10x10)"), "INCOMING", IDI_INCOMING, 10}, // 12
- { LPGEN("Outgoing message (10x10)"), "OUTGOING", IDI_OUTGOING, 10}, // 13
- { LPGEN("Notice (10x10)"), "NOTICE", IDI_NOTICE, 10}, // 14
- { LPGEN("Secure message (10x10)"), "SECURE", IDI_SECURE, 10}, // 15
- { LPGEN("Secure verified message (10x10)"), "STRONG", IDI_STRONG, 10}, // 16
+ { LPGEN("User's history"), "HISTORY", IDI_HISTORY }, // 2
+ { LPGEN("Send message"), "SEND", IDI_SEND }, // 3
+ { LPGEN("Smiley button"), "SMILEY", IDI_SMILEY }, // 4
+ { LPGEN("User is typing"), "TYPING", IDI_TYPING }, // 5
+ { LPGEN("Typing notification off"), "TYPINGOFF", IDI_TYPINGOFF }, // 6
+ { LPGEN("Sending"), "DELIVERING", IDI_TIMESTAMP }, // 7
+ { LPGEN("Quote button"), "QUOTE", IDI_QUOTE }, // 8
+ { LPGEN("Close button"), "CLOSEX", IDI_CLOSEX }, // 9
+ { LPGEN("Icon overlay"), "OVERLAY", IDI_OVERLAY }, // 10
+ { LPGEN("Incoming message (10x10)"), "INCOMING", IDI_INCOMING, 10}, // 11
+ { LPGEN("Outgoing message (10x10)"), "OUTGOING", IDI_OUTGOING, 10}, // 12
+ { LPGEN("Notice (10x10)"), "NOTICE", IDI_NOTICE, 10}, // 13
+ { LPGEN("Secure message (10x10)"), "SECURE", IDI_SECURE, 10}, // 14
+ { LPGEN("Secure verified message (10x10)"), "STRONG", IDI_STRONG, 10}, // 15
};
static IconItem iconList2[] =
|