diff options
author | George Hazan <ghazan@miranda.im> | 2021-12-26 17:06:04 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-12-26 17:06:04 +0300 |
commit | 1039b2829a264280493ba0fa979214fe024dc70c (patch) | |
tree | 8fa6a60eb46627582c372b56a4a1d4754d6732c3 /plugins/NewStory/src | |
parent | 62a186697df33c96dc1a6dac0f4dfc38652fb96f (diff) |
WORD -> uint16_t
Diffstat (limited to 'plugins/NewStory/src')
-rw-r--r-- | plugins/NewStory/src/history.cpp | 2 | ||||
-rw-r--r-- | plugins/NewStory/src/history_array.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/NewStory/src/history.cpp b/plugins/NewStory/src/history.cpp index 78001166de..96357f5366 100644 --- a/plugins/NewStory/src/history.cpp +++ b/plugins/NewStory/src/history.cpp @@ -120,7 +120,7 @@ const char* pSettings[] = class CHistoryDlg : public CDlgBase { HMENU m_hMenu; - WORD showFlags; + uint16_t showFlags; bool gonnaRedraw; bool isContactHistory; MCONTACT m_hContact; diff --git a/plugins/NewStory/src/history_array.h b/plugins/NewStory/src/history_array.h index 166dd48160..a6ec9b6503 100644 --- a/plugins/NewStory/src/history_array.h +++ b/plugins/NewStory/src/history_array.h @@ -39,7 +39,7 @@ struct ItemData class Filter { - WORD flags; + uint16_t flags; int *refCount; wchar_t *text; @@ -56,7 +56,7 @@ public: EVENTONLY = 0x100, }; - Filter(WORD aFlags, wchar_t *wText) + Filter(uint16_t aFlags, wchar_t *wText) { refCount = new int(0); flags = aFlags; |