From e3b12be40cf162fa480703fa7be2684b3ee0ac33 Mon Sep 17 00:00:00 2001 From: fredkiefer Date: Sun, 7 Sep 2008 11:16:32 +0000 Subject: [PATCH] Corrected last change. Sorry for that. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@26835 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 4 ++++ Source/NSBitmapImageRep+ICNS.m | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1e86483bf..9fad5f28d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-09-07 Fred Kiefer + + * Source/NSBitmapImageRep+ICNS.m: Corrected last change. + 2008-09-06 Fred Kiefer * Source/NSBitmapImageRep+ICNS.m: Change the incosistently named diff --git a/Source/NSBitmapImageRep+ICNS.m b/Source/NSBitmapImageRep+ICNS.m index 1c4b98a3a..7abc0bf3d 100644 --- a/Source/NSBitmapImageRep+ICNS.m +++ b/Source/NSBitmapImageRep+ICNS.m @@ -146,9 +146,9 @@ static icns_type_t icns_get_mask_type_for_icon_type(icns_type_t type) { return ICNS_48x48_8BIT_MASK; } - else if (icns_types_equal(type, ICNS_128x128_32BIT_DATA)) + else if (icns_types_equal(type, ICNS_128X128_32BIT_DATA)) { - return ICNS_128x128_8BIT_MASK; + return ICNS_128X128_8BIT_MASK; } else { @@ -181,7 +181,7 @@ static icns_icon_info_t icns_get_image_info_for_type(icns_type_t type) info.iconDepth = 8; info.iconChannels = 4; } - else if (icns_types_equal(type, ICNS_128x128_32BIT_DATA)) + else if (icns_types_equal(type, ICNS_128X128_32BIT_DATA)) { info.iconHeight = 128; info.iconWidth = 128;