mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
(-initWithCoder:): Remove an erroneous 'else' from the previous change.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@18549 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
93b7e7acf8
commit
084d3b083f
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-02-07 03:53 Alexander Malmberg <alexander@malmberg.org>
|
||||
|
||||
* Source/NSTableView.m (-initWithCoder:): Remove an erroneous 'else'
|
||||
from the previous change.
|
||||
|
||||
2004-02-06 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSMenu.m (-dealloc) Clean up pointer from items to menu.
|
||||
|
|
|
@ -6026,7 +6026,7 @@ byExtendingSelection: (BOOL)flag
|
|||
{
|
||||
[aDecoder decodeValueOfObjCType: @encode(BOOL) at: &_allowsColumnReordering];
|
||||
}
|
||||
else if (version >= 2)
|
||||
if (version >= 2)
|
||||
{
|
||||
[aDecoder decodeValueOfObjCType: @encode(BOOL) at: &_autoresizesAllColumnsToFit];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue