Changed namespace

This commit is contained in:
Sebastián Katzer 2013-08-10 16:13:04 +02:00
parent 10a118cb3b
commit 93a57a7a61
3 changed files with 11 additions and 11 deletions

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" <plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="de.appplant.maintcall.cordova.plugin.printer" id="de.appplant.cordova.plugin.printer"
version="0.0.1"> version="0.1.0">
<name>Printer</name> <name>Printer</name>
@ -21,7 +21,7 @@
<config-file target="config.xml" parent="/*"> <config-file target="config.xml" parent="/*">
<feature name="Printer"> <feature name="Printer">
<param name="ios-package" value="CDVPrinter"/> <param name="ios-package" value="APPPrinter"/>
</feature> </feature>
</config-file> </config-file>
@ -29,8 +29,8 @@
<clobbers target="plugin.printer" /> <clobbers target="plugin.printer" />
</js-module> </js-module>
<header-file src="src/ios/CDVPrinter.h" /> <header-file src="src/ios/APPPrinter.h" />
<source-file src="src/ios/CDVPrinter.m" /> <source-file src="src/ios/APPPrinter.m" />
</platform> </platform>

View File

@ -1,5 +1,5 @@
/** /**
* CDVPrinter.h * APPPrinter.h
* Cordova Printer Plugin * Cordova Printer Plugin
* *
* Created by Sebastian Katzer (github.com/katzer) on 10/08/2013. * Created by Sebastian Katzer (github.com/katzer) on 10/08/2013.
@ -11,7 +11,7 @@
#import <Cordova/CDVPlugin.h> #import <Cordova/CDVPlugin.h>
@interface CDVPrinter : CDVPlugin { @interface APPPrinter : CDVPlugin {
} }
@ -23,7 +23,7 @@
@end @end
@interface CDVPrinter (Private) @interface APPPrinter (Private)
// Bereitet den Drucker-Kontroller vor // Bereitet den Drucker-Kontroller vor
- (UIPrintInteractionController *) prepareController:(NSString*)content; - (UIPrintInteractionController *) prepareController:(NSString*)content;

View File

@ -1,5 +1,5 @@
/** /**
* CDVPrinter.m * APPPrinter.m
* Cordova Printer Plugin * Cordova Printer Plugin
* *
* Created by Sebastian Katzer (github.com/katzer) on 10/08/2013. * Created by Sebastian Katzer (github.com/katzer) on 10/08/2013.
@ -7,10 +7,10 @@
* GPL v2 licensed * GPL v2 licensed
*/ */
#import "CDVPrinter.h" #import "APPPrinter.h"
@implementation CDVPrinter @implementation APPPrinter
/* /*
* Is printing available. * Is printing available.