diff options
author | George Hazan <ghazan@miranda.im> | 2020-04-25 20:45:50 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-04-25 20:45:50 +0300 |
commit | 9aad59651c77743717e36c3c9860964012258a00 (patch) | |
tree | d8c7aecd883730b0e02445acf094303084a784d7 /plugins/NewStory/src/history_array.h | |
parent | 7dc8f0c12ed80977d1092e0c18f053e294b971f2 (diff) |
NewStory: fix for groupchat nicks
Diffstat (limited to 'plugins/NewStory/src/history_array.h')
-rw-r--r-- | plugins/NewStory/src/history_array.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/NewStory/src/history_array.h b/plugins/NewStory/src/history_array.h index 019e54db09..3f5b0fbc1e 100644 --- a/plugins/NewStory/src/history_array.h +++ b/plugins/NewStory/src/history_array.h @@ -21,6 +21,8 @@ struct ItemData bool wtext_del = false; wchar_t *wtext = 0; + wchar_t *wszNick = 0; + HANDLE data = 0; ItemData() { memset(&dbe, 0, sizeof(dbe)); } @@ -119,6 +121,7 @@ struct ItemBlock : public MZeroedObject class HistoryArray { + LIST<wchar_t> strings; OBJLIST<ItemBlock> pages; int iLastPageCounter = 0; |