diff options
author | stuconnolly <stuart02@gmail.com> | 2009-11-07 02:32:05 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-11-07 02:32:05 +0000 |
commit | 55bf19f025ab67562b151a40e2440c5c76b00ee5 (patch) | |
tree | 720b0775b3f245bec246eca461b43cf3ccdc254b /Source/SPTooltip.m | |
parent | 021ed107a07064cb5e0f1988b778fa0cfe4ffa37 (diff) | |
download | sequelpro-55bf19f025ab67562b151a40e2440c5c76b00ee5.tar.gz sequelpro-55bf19f025ab67562b151a40e2440c5c76b00ee5.tar.bz2 sequelpro-55bf19f025ab67562b151a40e2440c5c76b00ee5.zip |
Tidy up.
Diffstat (limited to 'Source/SPTooltip.m')
-rw-r--r-- | Source/SPTooltip.m | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/SPTooltip.m b/Source/SPTooltip.m index cf047aad..9b321005 100644 --- a/Source/SPTooltip.m +++ b/Source/SPTooltip.m @@ -26,7 +26,6 @@ // // More info at <http://code.google.com/p/sequel-pro/> - // Usage: // #import "SPTooltip.h" // @@ -68,8 +67,8 @@ static float slow_in_out (float t) return t; } - @interface SPTooltip (Private) + - (void)setContent:(NSString *)content withOptions:(NSDictionary *)displayOptions; - (void)runUntilUserActivity; - (void)stopAnimation:(id)sender; @@ -77,13 +76,17 @@ static float slow_in_out (float t) + (NSPoint)caretPosition; + (void)setDisplayOptions:(NSDictionary *)aDict; - (void)initMeWithOptions:(NSDictionary *)displayOptions; + @end @interface WebView (LeopardOnly) + - (void)setDrawsBackground:(BOOL)drawsBackground; + @end @implementation SPTooltip + // ================== // = Setup/teardown = // ================== @@ -456,4 +459,5 @@ static float slow_in_out (float t) [self setAlphaValue:0.97f]; } } + @end |