From 34e8e862de37febdbf4a7d1f474e1f06ea3273c7 Mon Sep 17 00:00:00 2001 From: RandyMcMillan Date: Mon, 30 Jul 2012 16:34:53 -0400 Subject: [PATCH] Comply with 2.0 CORDOVA_FRAMEWORK header 4. Change in import header use: in 2.0.0, Cordova projects use the CordovaLib project as a subproject, it now uses the CORDOVA_FRAMEWORK styled import like this: #import instead of like this: #import "CDV.h" So now in 2.0.0, Cordova import headers are unified. --- iOS/ChildBrowser/ChildBrowserCommand.h | 2 +- iOS/ChildBrowser/ChildBrowserCommand.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/iOS/ChildBrowser/ChildBrowserCommand.h b/iOS/ChildBrowser/ChildBrowserCommand.h index 35d78d9..1cabc2b 100644 --- a/iOS/ChildBrowser/ChildBrowserCommand.h +++ b/iOS/ChildBrowser/ChildBrowserCommand.h @@ -3,7 +3,7 @@ // Copyright 2012, Randy McMillan -#import "CDVPlugin.h" +#import #import "ChildBrowserViewController.h" diff --git a/iOS/ChildBrowser/ChildBrowserCommand.m b/iOS/ChildBrowser/ChildBrowserCommand.m index 1bfc292..c3acbf2 100644 --- a/iOS/ChildBrowser/ChildBrowserCommand.m +++ b/iOS/ChildBrowser/ChildBrowserCommand.m @@ -3,7 +3,7 @@ // Copyright 2012, Randy McMillan #import "ChildBrowserCommand.h" -#import "CDVViewController.h" +#import