project files imported using local syntax, and not framework syntax
Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/9fa27831 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/9fa27831 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/9fa27831 Branch: refs/heads/master Commit: 9fa27831c70ed7986e26d9ea8cea2669c6e37452 Parents: c7a0f63 Author: Jesse <jesse.macfad...@nitobi.com> Authored: Thu Dec 8 11:20:58 2011 -0800 Committer: Jesse <jesse.macfad...@nitobi.com> Committed: Thu Dec 8 11:20:58 2011 -0800 ---------------------------------------------------------------------- PhoneGapLib/Classes/Contact.m | 6 +++--- PhoneGapLib/Classes/File.m | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/9fa27831/PhoneGapLib/Classes/Contact.m ---------------------------------------------------------------------- diff --git a/PhoneGapLib/Classes/Contact.m b/PhoneGapLib/Classes/Contact.m index 56019df..52314d1 100644 --- a/PhoneGapLib/Classes/Contact.m +++ b/PhoneGapLib/Classes/Contact.m @@ -7,9 +7,9 @@ */ -#import <Contact.h> -#import <Categories.h> -#import <PhoneGapDelegate.h> +#import "Contact.h" +#import "Categories.h" +#import "PhoneGapDelegate.h" #define DATE_OR_NULL(dateObj) ( (aDate != nil) ? (id)([aDate descriptionWithLocale: [NSLocale currentLocale]]) : (id)([NSNull null]) ) #define IS_VALID_VALUE(value) ((value != nil) && (![value isKindOfClass: [NSNull class]])) http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/9fa27831/PhoneGapLib/Classes/File.m ---------------------------------------------------------------------- diff --git a/PhoneGapLib/Classes/File.m b/PhoneGapLib/Classes/File.m index 112ebb0..62347ff 100644 --- a/PhoneGapLib/Classes/File.m +++ b/PhoneGapLib/Classes/File.m @@ -8,9 +8,9 @@ #import "File.h" -#import <Categories.h> -#import <JSONKit.h> -#import <NSData+Base64.h> +#import "Categories.h" +#import "JSONKit.h" +#import "NSData+Base64.h" #import <MobileCoreServices/MobileCoreServices.h>