aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-05-09 10:08:33 +0000
committerstuconnolly <stuart02@gmail.com>2012-05-09 10:08:33 +0000
commit77a2fd669d9503f1872752116fb7c8e53e9c31ec (patch)
treec0001786e764400645ed8e9bff5893eb78a37543 /Frameworks
parentf78252011625ce15d860e8c2272dbd5907f1f3f9 (diff)
downloadsequelpro-77a2fd669d9503f1872752116fb7c8e53e9c31ec.tar.gz
sequelpro-77a2fd669d9503f1872752116fb7c8e53e9c31ec.tar.bz2
sequelpro-77a2fd669d9503f1872752116fb7c8e53e9c31ec.zip
Fix QueryKit warning.
Diffstat (limited to 'Frameworks')
-rw-r--r--Frameworks/QueryKit/Source/QKQuery.m2
-rw-r--r--Frameworks/QueryKit/Source/QueryKit-Prefix.pch30
2 files changed, 31 insertions, 1 deletions
diff --git a/Frameworks/QueryKit/Source/QKQuery.m b/Frameworks/QueryKit/Source/QKQuery.m
index 4be29ae2..bb876006 100644
--- a/Frameworks/QueryKit/Source/QKQuery.m
+++ b/Frameworks/QueryKit/Source/QKQuery.m
@@ -250,7 +250,7 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable";
*/
- (void)_validateRequiements
{
- if (_queryType == -1) {
+ if (_queryType == (QKQueryType)-1) {
[NSException raise:QKNoQueryTypeException format:@"Attempt to build query with no query type specified."];
}
diff --git a/Frameworks/QueryKit/Source/QueryKit-Prefix.pch b/Frameworks/QueryKit/Source/QueryKit-Prefix.pch
index 60070a9c..5e15c359 100644
--- a/Frameworks/QueryKit/Source/QueryKit-Prefix.pch
+++ b/Frameworks/QueryKit/Source/QueryKit-Prefix.pch
@@ -1,3 +1,33 @@
+//
+// $Id$
+//
+// QueryKit-Prefix.h
+// QueryKit
+//
+// Created by Stuart Connolly (stuconnolly.com) on September 4, 2011
+// Copyright (c) 2011 Stuart Connolly. All rights reserved.
+//
+// Permission is hereby granted, free of charge, to any person
+// obtaining a copy of this software and associated documentation
+// files (the "Software"), to deal in the Software without
+// restriction, including without limitation the rights to use,
+// copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the
+// Software is furnished to do so, subject to the following
+// conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+// OTHER DEALINGS IN THE SOFTWARE.
+
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#endif