Update header signature

This commit is contained in:
Sebastián Katzer 2016-07-20 21:00:33 +02:00
parent 831d855cec
commit f44ed52148
4 changed files with 6 additions and 6 deletions

View File

@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier same "printed page" as the copyright notice for easier
identification within third-party archives. identification within third-party archives.
Copyright [yyyy] [name of copyright owner] Copyright 2013-2016 appPlant GmbH
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/* /*
Copyright 2013-2014 appPlant UG Copyright 2013-2016 appPlant GmbH
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file or more contributor license agreements. See the NOTICE file

View File

@ -1,5 +1,5 @@
/* /*
Copyright 2013-2014 appPlant UG Copyright 2013-2016 appPlant GmbH
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file or more contributor license agreements. See the NOTICE file

View File

@ -1,5 +1,5 @@
/* /*
Copyright 2013-2014 appPlant UG Copyright 2013-2016 appPlant GmbH
Licensed to the Apache Software Foundation (ASF) under one Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file or more contributor license agreements. See the NOTICE file
@ -81,13 +81,13 @@
{ {
UIPrintInteractionController* controller = [self printController]; UIPrintInteractionController* controller = [self printController];
NSString* printerId = [self.settings objectForKey:@"printerId"]; NSString* printerId = [self.settings objectForKey:@"printerId"];
if (printerId) { if (printerId) {
[self sendToPrinter:controller printer:printerId]; [self sendToPrinter:controller printer:printerId];
} }
else { else {
CGRect rect = [self convertIntoRect:[self.settings objectForKey:@"bounds"]]; CGRect rect = [self convertIntoRect:[self.settings objectForKey:@"bounds"]];
[self presentPrintController:controller fromRect:rect]; [self presentPrintController:controller fromRect:rect];
} }
} }