aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TableSource.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-07-02 20:41:30 +0000
committerstuconnolly <stuart02@gmail.com>2009-07-02 20:41:30 +0000
commit965294442817fcd7ad2fdf1ca002b0a2416b858b (patch)
tree76c1408ff20ef11a800591b02bb284b4ffea3afc /Source/TableSource.m
parent80de4434635b34f459531547dc7670987d394b98 (diff)
downloadsequelpro-965294442817fcd7ad2fdf1ca002b0a2416b858b.tar.gz
sequelpro-965294442817fcd7ad2fdf1ca002b0a2416b858b.tar.bz2
sequelpro-965294442817fcd7ad2fdf1ca002b0a2416b858b.zip
Fix warnings caused by calls to validateMenuItem: being passed to NSObject by returning YES by default.
Diffstat (limited to 'Source/TableSource.m')
-rw-r--r--Source/TableSource.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableSource.m b/Source/TableSource.m
index f29cc6f9..f604f466 100644
--- a/Source/TableSource.m
+++ b/Source/TableSource.m
@@ -944,7 +944,7 @@ fetches the result as an array with a dictionary for each row in it
return ([indexView numberOfSelectedRows] == 1);
}
- return [super validateMenuItem:menuItem];
+ return YES;
}
#pragma mark -