mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
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
This commit is contained in:
parent
5b04e85e90
commit
aa4ce2c493
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2008-09-07 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSBitmapImageRep+ICNS.m: Corrected last change.
|
||||
|
||||
2008-09-06 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSBitmapImageRep+ICNS.m: Change the incosistently named
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue