mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Changed the key used in the user defaults to store a table columns so
that it is consistent with the key used by a window to store the frame git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@10771 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
bea8d88e7c
commit
a34fb690e9
1 changed files with 2 additions and 2 deletions
|
@ -2991,7 +2991,7 @@ byExtendingSelection: (BOOL)flag
|
|||
id en;
|
||||
|
||||
defaults = [NSUserDefaults standardUserDefaults];
|
||||
tableKey = [NSString stringWithFormat: @"Table Columns %@",
|
||||
tableKey = [NSString stringWithFormat: @"NSTableView Columns %@",
|
||||
_autosaveName];
|
||||
config = [NSMutableDictionary new];
|
||||
|
||||
|
@ -3024,7 +3024,7 @@ byExtendingSelection: (BOOL)flag
|
|||
NSString *tableKey;
|
||||
|
||||
defaults = [NSUserDefaults standardUserDefaults];
|
||||
tableKey = [NSString stringWithFormat: @"Table Columns %@",
|
||||
tableKey = [NSString stringWithFormat: @"NSTableView Columns %@",
|
||||
_autosaveName];
|
||||
config = [defaults objectForKey: tableKey];
|
||||
if (config != nil)
|
||||
|
|
Loading…
Reference in a new issue