Replace _this with this in Font.charsWidth and Font.substringWidth

This commit is contained in:
Marco Castelluccio 2014-10-21 15:14:52 +02:00
Родитель 85b3d054ad
Коммит 4e990a3e37
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -260,11 +260,11 @@
});
Native.create("javax/microedition/lcdui/Font.charsWidth.([CII)I", function(ctx, str, offset, len) {
return withFont(_this, MIDP.Context2D, util.fromJavaChars(str).slice(offset, offset + len));
return withFont(this, MIDP.Context2D, util.fromJavaChars(str).slice(offset, offset + len));
});
Native.create("javax/microedition/lcdui/Font.substringWidth.(Ljava/lang/String;II)I", function(ctx, str, offset, len) {
return withFont(_this, MIDP.Context2D, util.fromJavaString(str).slice(offset, offset + len));
return withFont(this, MIDP.Context2D, util.fromJavaString(str).slice(offset, offset + len));
});
var HCENTER = 1;