diff options
Diffstat (limited to 'Source/SPProcessListController.m')
-rw-r--r-- | Source/SPProcessListController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPProcessListController.m b/Source/SPProcessListController.m index 83b9ae54..34405701 100644 --- a/Source/SPProcessListController.m +++ b/Source/SPProcessListController.m @@ -25,7 +25,7 @@ #import "SPProcessListController.h" #import "SPArrayAdditions.h" -#import "TableDocument.h" +#import "SPDatabaseDocument.h" #import "SPConstants.h" #import "SPAlertSheets.h" @@ -183,7 +183,7 @@ { // If the document is currently performing a task (most likely threaded) on the current connection, don't // allow a refresh to prevent connection lock errors. - if ([(TableDocument *)[connection delegate] isWorking]) return; + if ([(SPDatabaseDocument *)[connection delegate] isWorking]) return; // Start progress Indicator [refreshProgressIndicator startAnimation:self]; |