From: Iain Patterson Date: Thu, 9 Jan 2014 08:56:22 +0000 (+0000) Subject: More compiler food. X-Git-Tag: v2.22~72 X-Git-Url: http://git.iain.cx/?p=nssm.git;a=commitdiff_plain;h=953c1a429d966133c9d03fc983c9098c4b67b9c2 More compiler food. Om nom nom. --- 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));