From a4f31a97e407280dc7e306a6c96948b53f9c0cab Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 3 Apr 2013 18:05:17 +0000 Subject: SmileyAdd: - array indexes totally unborkred; - code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@4296 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SmileyAdd/src/imagecache.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'plugins/SmileyAdd/src/imagecache.cpp') diff --git a/plugins/SmileyAdd/src/imagecache.cpp b/plugins/SmileyAdd/src/imagecache.cpp index 16d01d1f7e..28de0704b8 100644 --- a/plugins/SmileyAdd/src/imagecache.cpp +++ b/plugins/SmileyAdd/src/imagecache.cpp @@ -42,14 +42,12 @@ static void CALLBACK timerProc(HWND, UINT, UINT_PTR, DWORD) lastdllname.clear(); } - for (int i=g_imagecache.getCount(); i--; ) + for (int i=g_imagecache.getCount()-1; i >= 0; i--) g_imagecache[i].ProcessTimerTick(ts); - if (g_imagecache.getCount() == 0) - { + if (g_imagecache.getCount() == 0) { g_imagecache.destroy(); - if (timerId && (timerId+1) && lastmodule == NULL) - { + if (timerId && (timerId+1) && lastmodule == NULL) { KillTimer(NULL, timerId); timerId = 0; } -- cgit v1.2.3