From a2a3ba52bcadaeed8c7618a8fa50b0153675ec3e Mon Sep 17 00:00:00 2001 From: nico Date: Wed, 22 Aug 2001 09:20:39 +0000 Subject: [PATCH] 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 --- Source/NSTableView.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/NSTableView.m b/Source/NSTableView.m index b12d8c651..230b43ce9 100644 --- a/Source/NSTableView.m +++ b/Source/NSTableView.m @@ -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)