diff options
author | rowanbeentje <rowan@beent.je> | 2013-05-21 22:53:10 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2013-05-21 22:53:10 +0000 |
commit | 2737ac00c38513d976fda08104a5014221b0c99c (patch) | |
tree | 38829f7d5d9982b9648259cae0a269ef1640dd18 /Source/SPConnectionControllerInitializer.m | |
parent | 9432986de1d25527b133715ab12a8dffc2c5f6b6 (diff) | |
download | sequelpro-2737ac00c38513d976fda08104a5014221b0c99c.tar.gz sequelpro-2737ac00c38513d976fda08104a5014221b0c99c.tar.bz2 sequelpro-2737ac00c38513d976fda08104a5014221b0c99c.zip |
- Fix all the Xcode 4.6.2 build warnings, and tweak warning settings to enable some more
Diffstat (limited to 'Source/SPConnectionControllerInitializer.m')
-rw-r--r-- | Source/SPConnectionControllerInitializer.m | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Source/SPConnectionControllerInitializer.m b/Source/SPConnectionControllerInitializer.m index 4bef6178..7ea615e5 100644 --- a/Source/SPConnectionControllerInitializer.m +++ b/Source/SPConnectionControllerInitializer.m @@ -50,12 +50,21 @@ static NSString *SPConnectionViewNibName = @"ConnectionView"; - (void)_reloadFavoritesViewData; - (void)_selectNode:(SPTreeNode *)node; - (void)_scrollToSelectedNode; -- (void)_restoreOutlineViewStateNode:(SPTreeNode *)node; +- (void)_documentWillClose:(NSNotification *)notification; - (SPTreeNode *)_favoriteNodeForFavoriteID:(NSInteger)favoriteID; +- (void)scrollViewFrameChanged:(NSNotification *)aNotification; + +@end + +@interface SPConnectionController (SPConnectionControllerInitializer_Private_API) + +- (void)_restoreOutlineViewStateNode:(SPTreeNode *)node; + @end + @implementation SPConnectionController (SPConnectionControllerInitializer) /** |