Skip to content

Commit afd8643

Browse files
committed
minor fix
1 parent 9d507a9 commit afd8643

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

class/Drawable/underline.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ Drawable_clear_descent_crossing_caches( Handle self)
177177
}
178178
}
179179

180-
int*
181-
Drawable_call_get_glyph_descents( Handle self, unsigned int from, unsigned int to)
180+
static int*
181+
call_get_glyph_descents( Handle self, unsigned int from, unsigned int to)
182182
{
183183
dmARGS;
184184
int i, j, breakout, len = to - from + 1;
@@ -267,7 +267,7 @@ query_descent_range( Handle self, int base)
267267

268268
ret = (int*) Drawable_find_in_cache( var->glyph_descents, base);
269269
if ( ret == NULL) {
270-
ret = Drawable_call_get_glyph_descents( self, BASE_FROM(base), BASE_TO(base));
270+
ret = call_get_glyph_descents( self, BASE_FROM(base), BASE_TO(base));
271271
if ( ret == NULL)
272272
return NULL;
273273
if ( !Drawable_fill_cache(&(var->glyph_descents), base, ret)) {

0 commit comments

Comments
 (0)