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 /protocols/WebView/src/webview.cpp | |
parent | 1039b2829a264280493ba0fa979214fe024dc70c (diff) |
DWORD -> uint32_t
Diffstat (limited to 'protocols/WebView/src/webview.cpp')
-rw-r--r-- | protocols/WebView/src/webview.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/protocols/WebView/src/webview.cpp b/protocols/WebView/src/webview.cpp index 58b8e780b0..2f5b1d7780 100644 --- a/protocols/WebView/src/webview.cpp +++ b/protocols/WebView/src/webview.cpp @@ -26,7 +26,7 @@ char* WndClass = "WEBWnd"; WNDCLASSEX wincl; MSG messages; -DWORD winheight; +uint32_t winheight; int StartUpDelay = 0; int Xposition, Yposition; @@ -218,9 +218,9 @@ int Doubleclick(WPARAM wParam, LPARAM) int SendToRichEdit(HWND hWindow, char *truncated, COLORREF rgbText, COLORREF rgbBack) { DBVARIANT dbv; - DWORD bold = 0; - DWORD italic = 0; - DWORD underline = 0; + uint32_t bold = 0; + uint32_t italic = 0; + uint32_t underline = 0; SetDlgItemText(hWindow, IDC_DATA, L""); @@ -277,7 +277,7 @@ void CALLBACK timerfunc(HWND, UINT, UINT_PTR, DWORD) ///////////////////////////////////////////////////////////////////////////////////////// void CALLBACK Countdownfunc(HWND, UINT, UINT_PTR, DWORD) { - DWORD timetemp = g_plugin.getDword(COUNTDOWN_KEY, 100); + uint32_t timetemp = g_plugin.getDword(COUNTDOWN_KEY, 100); if (timetemp <= 0) { timetemp = g_plugin.getDword(REFRESH_KEY, TIME); g_plugin.setDword(COUNTDOWN_KEY, timetemp); |