diff options
Diffstat (limited to 'plugins/DbChecker/src/wizard.cpp')
-rw-r--r-- | plugins/DbChecker/src/wizard.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DbChecker/src/wizard.cpp b/plugins/DbChecker/src/wizard.cpp index 370b3935a1..c19fab31d6 100644 --- a/plugins/DbChecker/src/wizard.cpp +++ b/plugins/DbChecker/src/wizard.cpp @@ -28,8 +28,8 @@ HFONT hBoldFont = nullptr; static BOOL CALLBACK MyControlsEnumChildren(HWND hwnd, LPARAM) { - DWORD style = GetWindowLongPtr(hwnd, GWL_STYLE); - DWORD exstyle = GetWindowLongPtr(hwnd, GWL_EXSTYLE); + uint32_t style = GetWindowLongPtr(hwnd, GWL_STYLE); + uint32_t exstyle = GetWindowLongPtr(hwnd, GWL_EXSTYLE); char szClass[64]; int makeBold = 0; |