diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-10 21:08:51 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-10 21:08:51 +0000 |
commit | 6029165c364f93a84ab7e98ef71d3a711b0f588c (patch) | |
tree | 6149aea694a35781a0d4ed074fbfc64fc09f8875 /plugins/CountryFlags/src/icons.cpp | |
parent | 6b1fbf4d40fa3b643aca4e9e82a132cc54f36b76 (diff) |
attempt to fix the most crazy pieces of status icons related code
git-svn-id: http://svn.miranda-ng.org/main/trunk@4417 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CountryFlags/src/icons.cpp')
-rw-r--r-- | plugins/CountryFlags/src/icons.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CountryFlags/src/icons.cpp b/plugins/CountryFlags/src/icons.cpp index 34324005ad..7e37254ada 100644 --- a/plugins/CountryFlags/src/icons.cpp +++ b/plugins/CountryFlags/src/icons.cpp @@ -96,7 +96,7 @@ static int __fastcall CountryNumberToBitmapIndex(int countryNumber) // only operates on color icons, which isn't a problem here
static HICON __fastcall ResizeIconCentered(HICON hIcon,int cx,int cy)
{
- HICON hResIcon=NULL;
+ HICON hResIcon = NULL;
HDC hdc = CreateCompatibleDC(NULL);
if (hdc != NULL) {
ICONINFO icoi;
|