From 953c1a429d966133c9d03fc983c9098c4b67b9c2 Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Thu, 9 Jan 2014 08:56:22 +0000 Subject: [PATCH] More compiler food. Om nom nom. --- gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui.cpp b/gui.cpp index 4fdd3ca..831aef2 100644 --- a/gui.cpp +++ b/gui.cpp @@ -971,7 +971,7 @@ INT_PTR CALLBACK nssm_dlg(HWND window, UINT message, WPARAM w, LPARAM l) { int width = rect.right - rect.left; width -= (7 - columns) * 16; int height = rect.bottom - rect.top; - if (n < 4) height -= SendMessage(list, LB_GETITEMHEIGHT, 0, 0) * (4 - n); + if (n < 4) height -= (int) SendMessage(list, LB_GETITEMHEIGHT, 0, 0) * (4 - n); SetWindowPos(list, 0, 0, 0, width, height, SWP_NOMOVE | SWP_NOOWNERZORDER); } SendMessage(list, LB_SELITEMRANGE, 1, MAKELPARAM(0, n)); -- 2.20.1