From 22a92004ea340bf3454e170e9891053b564c5daa Mon Sep 17 00:00:00 2001 From: cxl Date: Sun, 12 Dec 2010 08:00:43 +0000 Subject: [PATCH] .FileSel: fixed warning (thanks koldo) git-svn-id: svn://ultimatepp.org/upp/trunk@2905 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/CtrlLib/FileSel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/CtrlLib/FileSel.cpp b/uppsrc/CtrlLib/FileSel.cpp index 710495973..bcd9968af 100644 --- a/uppsrc/CtrlLib/FileSel.cpp +++ b/uppsrc/CtrlLib/FileSel.cpp @@ -366,7 +366,7 @@ void LazyFileIcons::Do() } int tm = GetTickCount(); while(pos < list->GetCount()) { - if(GetTickCount() - tm > ptime) { + if((int)GetTickCount() - tm > ptime) { ptime = 50; Restart(0); return;