From 4a6b3a2acf91421a958b9946e15a149cac29e7b5 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 17 Aug 2015 19:39:01 +0000 Subject: warning fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@14980 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/FloatingContacts/src/thumbs.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/FloatingContacts/src') diff --git a/plugins/FloatingContacts/src/thumbs.cpp b/plugins/FloatingContacts/src/thumbs.cpp index 7101b78803..1553d293fb 100644 --- a/plugins/FloatingContacts/src/thumbs.cpp +++ b/plugins/FloatingContacts/src/thumbs.cpp @@ -299,12 +299,12 @@ void ThumbInfo::ResizeThumb() } } -void ThumbInfo::RefreshContactIcon(int iIcon) +void ThumbInfo::RefreshContactIcon(int _iIcon) { - if (iIcon == 0xFFFFFFFF || ImageList_GetImageCount(himlMiranda) <= iIcon) - this->iIcon = CallService(MS_CLIST_GETCONTACTICON, hContact, 0); + if (iIcon == 0xFFFFFFFF || ImageList_GetImageCount(himlMiranda) <= _iIcon) + iIcon = CallService(MS_CLIST_GETCONTACTICON, hContact, 0); else - this->iIcon = iIcon; + iIcon = _iIcon; UpdateContent(); } -- cgit v1.2.3