diff options
author | George Hazan <ghazan@miranda.im> | 2021-03-13 17:50:26 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-03-13 17:50:26 +0300 |
commit | 6a53de3a1f093a92126c0a86ec5f7ad52e3caf15 (patch) | |
tree | 1ad2a8af28b31966d67da9cea875e7a7c2b9025e /plugins/Scriver | |
parent | b10f9d1556172e721e5a0c345f67f4827408a6db (diff) |
Group chats API:
- for #2574: fixes icons problem after unloading tabSRMM;
- status icons extracted to the separate array;
- another group chat icons are hidden completely to restrict access to them
Diffstat (limited to 'plugins/Scriver')
-rw-r--r-- | plugins/Scriver/res/chat/1.ico | bin | 502 -> 0 bytes | |||
-rw-r--r-- | plugins/Scriver/res/chat/2.ico | bin | 502 -> 0 bytes | |||
-rw-r--r-- | plugins/Scriver/res/chat/3.ico | bin | 502 -> 0 bytes | |||
-rw-r--r-- | plugins/Scriver/res/chat/4.ico | bin | 502 -> 0 bytes | |||
-rw-r--r-- | plugins/Scriver/res/chat/5.ico | bin | 502 -> 0 bytes | |||
-rw-r--r-- | plugins/Scriver/res/chat/6.ico | bin | 502 -> 0 bytes | |||
-rw-r--r-- | plugins/Scriver/res/resource.rc | 12 | ||||
-rw-r--r-- | plugins/Scriver/src/globals.cpp | 6 | ||||
-rw-r--r-- | plugins/Scriver/src/resource.h | 6 |
9 files changed, 0 insertions, 24 deletions
diff --git a/plugins/Scriver/res/chat/1.ico b/plugins/Scriver/res/chat/1.ico Binary files differdeleted file mode 100644 index 61fa00e172..0000000000 --- a/plugins/Scriver/res/chat/1.ico +++ /dev/null diff --git a/plugins/Scriver/res/chat/2.ico b/plugins/Scriver/res/chat/2.ico Binary files differdeleted file mode 100644 index 5c1dc06fbc..0000000000 --- a/plugins/Scriver/res/chat/2.ico +++ /dev/null diff --git a/plugins/Scriver/res/chat/3.ico b/plugins/Scriver/res/chat/3.ico Binary files differdeleted file mode 100644 index f103719b68..0000000000 --- a/plugins/Scriver/res/chat/3.ico +++ /dev/null diff --git a/plugins/Scriver/res/chat/4.ico b/plugins/Scriver/res/chat/4.ico Binary files differdeleted file mode 100644 index 47d8f35fe2..0000000000 --- a/plugins/Scriver/res/chat/4.ico +++ /dev/null diff --git a/plugins/Scriver/res/chat/5.ico b/plugins/Scriver/res/chat/5.ico Binary files differdeleted file mode 100644 index 7008463787..0000000000 --- a/plugins/Scriver/res/chat/5.ico +++ /dev/null diff --git a/plugins/Scriver/res/chat/6.ico b/plugins/Scriver/res/chat/6.ico Binary files differdeleted file mode 100644 index 8a681faeb7..0000000000 --- a/plugins/Scriver/res/chat/6.ico +++ /dev/null diff --git a/plugins/Scriver/res/resource.rc b/plugins/Scriver/res/resource.rc index 51cf4dac29..4164a6a1af 100644 --- a/plugins/Scriver/res/resource.rc +++ b/plugins/Scriver/res/resource.rc @@ -502,18 +502,6 @@ IDI_FILTER ICON "chat/filter.ico" IDI_NICKLIST ICON "chat/nicklist.ico"
-IDI_STATUS3 ICON "chat/4.ico"
-
-IDI_STATUS2 ICON "chat/3.ico"
-
-IDI_STATUS4 ICON "chat/5.ico"
-
-IDI_STATUS1 ICON "chat/2.ico"
-
-IDI_STATUS0 ICON "chat/1.ico"
-
-IDI_STATUS5 ICON "chat/6.ico"
-
IDI_OVERLAY ICON "chat/overlay.ico"
IDI_NICKLIST2 ICON "chat/nicklist2.ico"
diff --git a/plugins/Scriver/src/globals.cpp b/plugins/Scriver/src/globals.cpp index 6c017b7266..1978bdbbd0 100644 --- a/plugins/Scriver/src/globals.cpp +++ b/plugins/Scriver/src/globals.cpp @@ -72,12 +72,6 @@ static IconItem iconList2[] = { LPGEN("Hide nick list"), "nicklist", IDI_NICKLIST }, // 12
{ LPGEN("Show nick list"), "nicklist2", IDI_NICKLIST2 }, // 13
{ LPGEN("Icon overlay"), "overlay", IDI_OVERLAY }, // 14
- { LPGEN("Status 1 (10x10)"), "status0", IDI_STATUS0, 10}, // 15
- { LPGEN("Status 2 (10x10)"), "status1", IDI_STATUS1, 10}, // 16
- { LPGEN("Status 3 (10x10)"), "status2", IDI_STATUS2, 10}, // 17
- { LPGEN("Status 4 (10x10)"), "status3", IDI_STATUS3, 10}, // 18
- { LPGEN("Status 5 (10x10)"), "status4", IDI_STATUS4, 10}, // 19
- { LPGEN("Status 6 (10x10)"), "status5", IDI_STATUS5, 10}, // 20
};
static IconItem iconList3[] =
diff --git a/plugins/Scriver/src/resource.h b/plugins/Scriver/src/resource.h index 14f62efbaa..4793e60cde 100644 --- a/plugins/Scriver/src/resource.h +++ b/plugins/Scriver/src/resource.h @@ -59,12 +59,6 @@ #define IDI_ADDSTATUS 441
#define IDI_REMSTATUS 442
#define IDI_ACTION 443
-#define IDI_STATUS3 453
-#define IDI_STATUS2 454
-#define IDI_STATUS4 455
-#define IDI_STATUS1 456
-#define IDI_STATUS0 457
-#define IDI_STATUS5 458
#define IDI_OVERLAY 460
#define IDI_NICKLIST2 461
#define IDI_FILTER2 462
|