diff options
Diffstat (limited to 'plugins/FloatingContacts')
-rw-r--r-- | plugins/FloatingContacts/src/thumbs.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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();
}
|