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

View File

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

View File

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