aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPNavigatorOutlineView.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2013-01-25 20:14:11 +0000
committerstuconnolly <stuart02@gmail.com>2013-01-25 20:14:11 +0000
commitb442a9920d8e873c4df7b84799aa49e551922e2d (patch)
tree1b52e6e477419456b11327a6b920b59ca5d80fcd /Source/SPNavigatorOutlineView.m
parentdfd3414cbcfc025caa23285c7d1a8f108b09b5f1 (diff)
downloadsequelpro-b442a9920d8e873c4df7b84799aa49e551922e2d.tar.gz
sequelpro-b442a9920d8e873c4df7b84799aa49e551922e2d.tar.bz2
sequelpro-b442a9920d8e873c4df7b84799aa49e551922e2d.zip
Fix more warnings.
Diffstat (limited to 'Source/SPNavigatorOutlineView.m')
-rw-r--r--Source/SPNavigatorOutlineView.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPNavigatorOutlineView.m b/Source/SPNavigatorOutlineView.m
index 17252750..c0772ebd 100644
--- a/Source/SPNavigatorOutlineView.m
+++ b/Source/SPNavigatorOutlineView.m
@@ -44,7 +44,7 @@
{
// Enter or Return selects in active document the chosen item
if ([self numberOfSelectedRows] == 1 && ([theEvent keyCode] == 36 || [theEvent keyCode] == 76)) {
- [[self delegate] selectInActiveDocumentItem:[self itemAtRow:[self selectedRow]] fromView:self];
+ [(SPNavigatorController *)[self delegate] selectInActiveDocumentItem:[self itemAtRow:[self selectedRow]] fromView:self];
return;
}