Fix variable naming

This commit is contained in:
Julian Viereck 2011-10-09 13:09:57 +02:00
parent d313115d19
commit ac32f6f426

4
pdf.js
View File

@ -7539,13 +7539,13 @@ var PDFFunction = (function() {
var bounds = dict.get('Bounds');
var encode = dict.get('Encode');
return [CONSTRUCT_STICHED, domain, bounds, encoding, fns];
return [CONSTRUCT_STICHED, domain, bounds, encode, fns];
},
constructStichedFromIR: function pdfFunctionConstructStichedFromIR(IR) {
var domain = IR[1];
var bounds = IR[2];
var encoding = IR[3];
var encode = IR[3];
var fnsIR = IR[4];
var fns = [];