diff options
author | George Hazan <ghazan@miranda.im> | 2021-12-26 20:31:39 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-12-26 20:31:39 +0300 |
commit | cddcd7483a7c472598af098e759e5d309024f606 (patch) | |
tree | b0a227d6e087c41958cc84d27bc323353248aae5 /plugins/ZeroNotification/src/options.cpp | |
parent | 1039b2829a264280493ba0fa979214fe024dc70c (diff) |
DWORD -> uint32_t
Diffstat (limited to 'plugins/ZeroNotification/src/options.cpp')
-rw-r--r-- | plugins/ZeroNotification/src/options.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/ZeroNotification/src/options.cpp b/plugins/ZeroNotification/src/options.cpp index 35a78b7a6b..6550c46f3d 100644 --- a/plugins/ZeroNotification/src/options.cpp +++ b/plugins/ZeroNotification/src/options.cpp @@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. struct CheckBoxValues_t { - DWORD style; + uint32_t style; wchar_t *szDescr; } static const statusValues[] = @@ -33,7 +33,7 @@ static const statusValues[] = { PF2_INVISIBLE, TEXT("Invisible") } }; -static void FillCheckBoxTree(HWND hwndTree, const struct CheckBoxValues_t *values, int nValues, DWORD style) +static void FillCheckBoxTree(HWND hwndTree, const struct CheckBoxValues_t *values, int nValues, uint32_t style) { TVINSERTSTRUCT tvis; tvis.hParent = nullptr; @@ -48,9 +48,9 @@ static void FillCheckBoxTree(HWND hwndTree, const struct CheckBoxValues_t *value } } -static DWORD MakeCheckBoxTreeFlags(HWND hwndTree) +static uint32_t MakeCheckBoxTreeFlags(HWND hwndTree) { - DWORD flags = 0; + uint32_t flags = 0; TVITEM tvi; tvi.mask = TVIF_HANDLE | TVIF_PARAM | TVIF_STATE; @@ -66,7 +66,7 @@ static DWORD MakeCheckBoxTreeFlags(HWND hwndTree) static INT_PTR CALLBACK DlgProcNoSoundOpts(HWND hwndDlg, UINT msg, WPARAM, LPARAM lParam) { - DWORD test; + uint32_t test; switch (msg) { case WM_INITDIALOG: TranslateDialogDefault(hwndDlg); |