summaryrefslogtreecommitdiff
path: root/pango/opentype/hb-ot-layout-gpos-private.hh
diff options
context:
space:
mode:
Diffstat (limited to 'pango/opentype/hb-ot-layout-gpos-private.hh')
-rw-r--r--pango/opentype/hb-ot-layout-gpos-private.hh12
1 files changed, 6 insertions, 6 deletions
diff --git a/pango/opentype/hb-ot-layout-gpos-private.hh b/pango/opentype/hb-ot-layout-gpos-private.hh
index 5c817db0..f43aa2de 100644
--- a/pango/opentype/hb-ot-layout-gpos-private.hh
+++ b/pango/opentype/hb-ot-layout-gpos-private.hh
@@ -275,7 +275,7 @@ struct SinglePosFormat1
if (HB_LIKELY (index == NOT_COVERED))
return false;
- valueFormat.apply_value (context, (const char *) this, values, CURPOSITION ());
+ valueFormat.apply_value (context, CONST_CHARP(this), values, CURPOSITION ());
buffer->in_pos++;
return true;
@@ -308,7 +308,7 @@ struct SinglePosFormat2
if (HB_LIKELY (index >= valueCount))
return false;
- valueFormat.apply_value (context, (const char *) this,
+ valueFormat.apply_value (context, CONST_CHARP(this),
values + index * valueFormat.get_len (),
CURPOSITION ());
@@ -413,8 +413,8 @@ struct PairPosFormat1
{
if (IN_GLYPH (j) == record->secondGlyph)
{
- valueFormat1.apply_value (context, (const char *) this, record->values, CURPOSITION ());
- valueFormat2.apply_value (context, (const char *) this, record->values + len1, POSITION (j));
+ valueFormat1.apply_value (context, CONST_CHARP(this), record->values, CURPOSITION ());
+ valueFormat2.apply_value (context, CONST_CHARP(this), record->values + len1, POSITION (j));
if (len2)
j++;
buffer->in_pos = j;
@@ -476,8 +476,8 @@ struct PairPosFormat2
return false;
const Value *v = values + record_len * (klass1 * class2Count + klass2);
- valueFormat1.apply_value (context, (const char *) this, v, CURPOSITION ());
- valueFormat2.apply_value (context, (const char *) this, v + len1, POSITION (j));
+ valueFormat1.apply_value (context, CONST_CHARP(this), v, CURPOSITION ());
+ valueFormat2.apply_value (context, CONST_CHARP(this), v + len1, POSITION (j));
if (len2)
j++;