aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPBundleHTMLOutputController.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2011-03-15 22:41:05 +0000
committerBibiko <bibiko@eva.mpg.de>2011-03-15 22:41:05 +0000
commitf75853dea57bc97cc264352268f9d4a311bffb9f (patch)
treef1b14de8c0393a383d7fbf68776221c9da406b81 /Source/SPBundleHTMLOutputController.m
parentce26c1a8d44743c418e6af461ba970cea3afaaee (diff)
downloadsequelpro-f75853dea57bc97cc264352268f9d4a311bffb9f.tar.gz
sequelpro-f75853dea57bc97cc264352268f9d4a311bffb9f.tar.bz2
sequelpro-f75853dea57bc97cc264352268f9d4a311bffb9f.zip
• fixed warnings
Diffstat (limited to 'Source/SPBundleHTMLOutputController.m')
-rw-r--r--Source/SPBundleHTMLOutputController.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/SPBundleHTMLOutputController.m b/Source/SPBundleHTMLOutputController.m
index 82f21468..1995cfcb 100644
--- a/Source/SPBundleHTMLOutputController.m
+++ b/Source/SPBundleHTMLOutputController.m
@@ -50,7 +50,7 @@
@synthesize initHTMLSourceString;
@synthesize windowUUID;
@synthesize docUUID;
-@synthesize suppressExceptionAlert;
+@synthesize suppressExceptionAlerting;
/**
* Initialisation
@@ -70,7 +70,7 @@
#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060
[webView setShouldUpdateWhileOffscreen:NO];
#endif
- suppressExceptionAlert = NO;
+ suppressExceptionAlerting = NO;
}
@@ -523,7 +523,7 @@
NSString *mes = [NSString stringWithFormat:@"Exception:\nline = %ld\nfunction = %@\ncaller = %@\nexception = %@", lineno, [frame functionName], [frame caller], [frame userInfo], [frame exception]];
- if([self suppressExceptionAlert]) {
+ if([self suppressExceptionAlerting]) {
NSLog(@"%@", mes);
return;
}
@@ -616,7 +616,7 @@
*/
- (void)suppressExceptionAlert
{
- [self setSuppressExceptionAlert:YES];
+ [self setSuppressExceptionAlerting:YES];
}
/**