From cddcd7483a7c472598af098e759e5d309024f606 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 26 Dec 2021 20:31:39 +0300 Subject: DWORD -> uint32_t --- plugins/ClientChangeNotify/src/Options.cpp | 2 +- plugins/ClientChangeNotify/src/Options.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/ClientChangeNotify') diff --git a/plugins/ClientChangeNotify/src/Options.cpp b/plugins/ClientChangeNotify/src/Options.cpp index 225a0a8309..07994262d7 100644 --- a/plugins/ClientChangeNotify/src/Options.cpp +++ b/plugins/ClientChangeNotify/src/Options.cpp @@ -345,7 +345,7 @@ void COptItem_TreeCtrl::WndToMem(HWND hWnd) { // only need to gather info of items state (expanded/collapsed, checked/unchecked) HWND hTreeView = GetDlgItem(hWnd, m_dlgItemID); for (int i = 0; i < m_value.GetSize(); i++) { - DWORD State = TreeView_GetItemState(hTreeView, m_value[i].hItem, TVIS_EXPANDED | TVIS_STATEIMAGEMASK); + uint32_t State = TreeView_GetItemState(hTreeView, m_value[i].hItem, TVIS_EXPANDED | TVIS_STATEIMAGEMASK); int OldFlags = m_value[i].Flags; if (State & TVIS_EXPANDED) m_value[i].Flags |= TIF_EXPANDED; diff --git a/plugins/ClientChangeNotify/src/Options.h b/plugins/ClientChangeNotify/src/Options.h index 9c69b4d1bc..ef55d5021f 100644 --- a/plugins/ClientChangeNotify/src/Options.h +++ b/plugins/ClientChangeNotify/src/Options.h @@ -236,8 +236,8 @@ public: virtual COptItem* Copy() { return new COptItem_Colourpicker(*this); } - DWORD m_defValue; - DWORD m_value; + uint32_t m_defValue; + uint32_t m_value; }; -- cgit v1.2.3