diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-09 00:43:58 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-09 00:43:58 +0000 |
commit | d57e98e47c5f178a36b84b08bdead8b623322b01 (patch) | |
tree | 8d7d4fa7b7e311f5277b9f362a58e5c524f6f54b | |
parent | 42d3594b31392b25ccb4907a10c600372b7cde4f (diff) | |
download | sequelpro-d57e98e47c5f178a36b84b08bdead8b623322b01.tar.gz sequelpro-d57e98e47c5f178a36b84b08bdead8b623322b01.tar.bz2 sequelpro-d57e98e47c5f178a36b84b08bdead8b623322b01.zip |
Rename private API header.
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnection.m | 2 | ||||
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnectionEncoding.m | 2 | ||||
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnectionParameters.m | 2 | ||||
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnectionPrivateAPI.m | 29 | ||||
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m | 2 | ||||
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m | 2 | ||||
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresKitPrivateAPI.h (renamed from Frameworks/PostgresKit/Source/FLXPostgresConnectionPrivateAPI.h) | 2 | ||||
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXTimeInterval.m | 2 |
8 files changed, 7 insertions, 36 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnection.m b/Frameworks/PostgresKit/Source/FLXPostgresConnection.m index d5d06c0f..b3a3918b 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnection.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnection.m @@ -23,7 +23,7 @@ #import "FLXPostgresConnection.h" #import "FLXPostgresConnectionParameters.h" #import "FLXPostgresConnectionTypeHandling.h" -#import "FLXPostgresConnectionPrivateAPI.h" +#import "FLXPostgresKitPrivateAPI.h" #import "FLXPostgresTypeHandlerProtocol.h" #import "FLXPostgresTypeNumberHandler.h" #import "FLXPostgresTypeStringHandler.h" diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionEncoding.m b/Frameworks/PostgresKit/Source/FLXPostgresConnectionEncoding.m index ddecee64..a58de60b 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionEncoding.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnectionEncoding.m @@ -29,7 +29,7 @@ // OTHER DEALINGS IN THE SOFTWARE. #import "FLXPostgresConnectionEncoding.h" -#import "FLXPostgresConnectionPrivateAPI.h" +#import "FLXPostgresKitPrivateAPI.h" @implementation FLXPostgresConnection (FLXPostgresConnectionEncoding) diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionParameters.m b/Frameworks/PostgresKit/Source/FLXPostgresConnectionParameters.m index f1161f89..ce730513 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionParameters.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnectionParameters.m @@ -29,7 +29,7 @@ // OTHER DEALINGS IN THE SOFTWARE. #import "FLXPostgresConnectionParameters.h" -#import "FLXPostgresConnectionPrivateAPI.h" +#import "FLXPostgresKitPrivateAPI.h" #import "FLXPostgresConnection.h" @interface FLXPostgresConnectionParameters () diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionPrivateAPI.m b/Frameworks/PostgresKit/Source/FLXPostgresConnectionPrivateAPI.m deleted file mode 100644 index 52610305..00000000 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionPrivateAPI.m +++ /dev/null @@ -1,29 +0,0 @@ -// -// FLXPostgresConnectionPrivateAPI.m -// PostgresKit -// -// Copyright (c) 2008-2009 David Thorpe, djt@mutablelogic.com -// -// Forked by the Sequel Pro Team on July 22, 2012. -// -// Licensed under the Apache License, Version 2.0 (the "License"); you may not -// use this file except in compliance with the License. You may obtain a copy of -// the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -// License for the specific language governing permissions and limitations under -// the License. - -#import "FLXPostgresConnectionPrivateAPI.h" -#import "FLXPostgresConnectionDelegateProtocol.h" -#import "FLXPostgresResult.h" - -@implementation FLXPostgresConnection (FLXPostgresConnectionPrivateAPI) - - - -@end diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m index 7a220816..a58d6219 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m @@ -21,7 +21,7 @@ // the License. #import "FLXPostgresConnectionQueryExecution.h" -#import "FLXPostgresConnectionPrivateAPI.h" +#import "FLXPostgresKitPrivateAPI.h" #import "FLXPostgresConnectionTypeHandling.h" #import "FLXPostgresConnectionDelegate.h" #import "FLXPostgresTypeHandlerProtocol.h" diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m index deeefc1a..5d99fd8c 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m @@ -22,7 +22,7 @@ #import "FLXPostgresConnectionQueryPreparation.h" #import "FLXPostgresConnectionTypeHandling.h" -#import "FLXPostgresConnectionPrivateAPI.h" +#import "FLXPostgresKitPrivateAPI.h" #import "FLXPostgresStatement.h" #import "FLXPostgresException.h" diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionPrivateAPI.h b/Frameworks/PostgresKit/Source/FLXPostgresKitPrivateAPI.h index c00f040a..174b8018 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionPrivateAPI.h +++ b/Frameworks/PostgresKit/Source/FLXPostgresKitPrivateAPI.h @@ -1,7 +1,7 @@ // // $Id$ // -// FLXPostgresConnectionPrivateAPI.h +// FLXPostgresConnectionKitAPI.h // PostgresKit // // Copyright (c) 2008-2009 David Thorpe, djt@mutablelogic.com diff --git a/Frameworks/PostgresKit/Source/FLXTimeInterval.m b/Frameworks/PostgresKit/Source/FLXTimeInterval.m index 2b677a2c..48f8cbd4 100644 --- a/Frameworks/PostgresKit/Source/FLXTimeInterval.m +++ b/Frameworks/PostgresKit/Source/FLXTimeInterval.m @@ -29,7 +29,7 @@ // OTHER DEALINGS IN THE SOFTWARE. #import "FLXTimeInterval.h" -#import "FLXPostgresConnectionPrivateAPI.h" +#import "FLXPostgresKitPrivateAPI.h" @implementation FLXTimeInterval |