From 51a3f8ca43826a2adbcacb7f68d45190013d6cb8 Mon Sep 17 00:00:00 2001 From: nico Date: Tue, 21 Aug 2001 18:13:32 +0000 Subject: [PATCH] Use the cached notification center git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@10758 72102866-910b-0410-8b05-ffd578937521 --- Source/NSTableView.m | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Source/NSTableView.m b/Source/NSTableView.m index f950fab20..fff37d6a7 100644 --- a/Source/NSTableView.m +++ b/Source/NSTableView.m @@ -479,10 +479,9 @@ _isCellEditable (id delegate, NSArray *tableColumns, dict =[NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithInt: columnIndex], @"NSOldColumn", [NSNumber numberWithInt: newIndex], @"NSNewColumn", nil]; - [(NSNotificationCenter *)[NSNotificationCenter defaultCenter] - postNotificationName: NSTableViewColumnDidMoveNotification - object: self - userInfo: dict]; + [nc postNotificationName: NSTableViewColumnDidMoveNotification + object: self + userInfo: dict]; } - (NSArray *) tableColumns