diff options
author | rowanbeentje <rowan@beent.je> | 2009-11-04 01:15:53 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2009-11-04 01:15:53 +0000 |
commit | 48d02b7080cadc507b1e7897c54ce2a8cf149acf (patch) | |
tree | f45eba9b97c71e1579580d790e9c9aa00088b26a /Source/SPTableInfo.m | |
parent | 0d5acfadf8d43ab3889f50456f5dc7ff42bf1a12 (diff) | |
download | sequelpro-48d02b7080cadc507b1e7897c54ce2a8cf149acf.tar.gz sequelpro-48d02b7080cadc507b1e7897c54ce2a8cf149acf.tar.bz2 sequelpro-48d02b7080cadc507b1e7897c54ce2a8cf149acf.zip |
- Add task support to all the main interface views
- Improve task support on previously supported views
- Use a threaded task load for all initial table loads
- Support threaded task loads for table content loads, reloads, sorts, and filters
- Improve upon previous threaded task loads by minimising view updates and supporting updates of the existing data arrays where valid
Diffstat (limited to 'Source/SPTableInfo.m')
-rw-r--r-- | Source/SPTableInfo.m | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/SPTableInfo.m b/Source/SPTableInfo.m index b3ff4946..166a7634 100644 --- a/Source/SPTableInfo.m +++ b/Source/SPTableInfo.m @@ -29,6 +29,7 @@ #import "TableDocument.h" #import "TablesList.h" #import "SPTableData.h" +#import "SPConstants.h" #import "SPStringAdditions.h" @interface SPTableInfo (PrivateAPI) @@ -52,8 +53,8 @@ { [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tableChanged:) - name:NSTableViewSelectionDidChangeNotification - object:tableList]; + name:SPTableChangedNotification + object:tableDocumentInstance]; [info addObject:NSLocalizedString(@"TABLE INFORMATION", @"header for table info pane")]; [infoTable reloadData]; |