aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/MCPKit/Support files/NSNotificationAdditions.h
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2011-06-01 00:35:31 +0000
committerrowanbeentje <rowan@beent.je>2011-06-01 00:35:31 +0000
commitbd86e6d3f1e7a54d07060538a8efe04caa2789b1 (patch)
tree37c7d2f480042ad357ca293de8fa3202236f7ce3 /Frameworks/MCPKit/Support files/NSNotificationAdditions.h
parent52c7fd7e1c2155dbb1f2f68d9cf3464398ec2710 (diff)
downloadsequelpro-bd86e6d3f1e7a54d07060538a8efe04caa2789b1.tar.gz
sequelpro-bd86e6d3f1e7a54d07060538a8efe04caa2789b1.tar.bz2
sequelpro-bd86e6d3f1e7a54d07060538a8efe04caa2789b1.zip
NSNotificationAdditions tweaks:
- Remove unused _postNotificationForwarder methods - Clean up and standardise method names and argument names - Correctly cross-thread retain when waitUntilDone: is NO - Attempt to improve compatibility with third-party frameworks such as TCMPortMapper
Diffstat (limited to 'Frameworks/MCPKit/Support files/NSNotificationAdditions.h')
-rw-r--r--Frameworks/MCPKit/Support files/NSNotificationAdditions.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Frameworks/MCPKit/Support files/NSNotificationAdditions.h b/Frameworks/MCPKit/Support files/NSNotificationAdditions.h
index 7d0d6f9a..82777ebb 100644
--- a/Frameworks/MCPKit/Support files/NSNotificationAdditions.h
+++ b/Frameworks/MCPKit/Support files/NSNotificationAdditions.h
@@ -25,11 +25,11 @@
@interface NSNotificationCenter (NSNotificationCenterAdditions)
-- (void)postNotificationOnMainThread:(NSNotification *)notification;
-- (void)postNotificationOnMainThread:(NSNotification *)notification waitUntilDone:(BOOL)wait;
+- (void)postNotificationOnMainThread:(NSNotification *)aNotification;
+- (void)postNotificationOnMainThread:(NSNotification *)aNotification waitUntilDone:(BOOL)shouldWaitUntilDone;
-- (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object;
-- (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
-- (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wait;
+- (void)postNotificationOnMainThreadWithName:(NSString *)aName object:(id)anObject;
+- (void)postNotificationOnMainThreadWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;
+- (void)postNotificationOnMainThreadWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo waitUntilDone:(BOOL)shouldWaitUntilDone;
@end