diff options
author | rowanbeentje <rowan@beent.je> | 2010-02-23 01:26:33 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-02-23 01:26:33 +0000 |
commit | a24e9c697049bacb587835153e2ebb4764fff008 (patch) | |
tree | bab464b0eb1c44bb35ed745d41ba2e46beb9350d /Source/SPHistoryController.h | |
parent | c11169058366ca679789bc82cf1b3ca8ed496967 (diff) | |
download | sequelpro-a24e9c697049bacb587835153e2ebb4764fff008.tar.gz sequelpro-a24e9c697049bacb587835153e2ebb4764fff008.tar.bz2 sequelpro-a24e9c697049bacb587835153e2ebb4764fff008.zip |
Fix Issue #574 (foreign key links not working after first use):
- Move foreign key reference loading into it's own task and set state modification markers to allow it to override the table state history
- Rename modifyingHistoryState to modifyingState now the usge has broadened slightly
Diffstat (limited to 'Source/SPHistoryController.h')
-rw-r--r-- | Source/SPHistoryController.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPHistoryController.h b/Source/SPHistoryController.h index 0b2d50d9..dd5c7133 100644 --- a/Source/SPHistoryController.h +++ b/Source/SPHistoryController.h @@ -45,12 +45,12 @@ enum sphistory_view_types NSMutableArray *history; NSMutableDictionary *tableContentStates; NSUInteger historyPosition; - BOOL modifyingHistoryState; + BOOL modifyingState; } @property (readonly) NSUInteger historyPosition; @property (readonly) NSMutableArray *history; -@property (readwrite, assign) BOOL modifyingHistoryState; +@property (readwrite, assign) BOOL modifyingState; // Interface interaction - (void) updateToolbarItem; |