summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-01-30 22:19:28 +0000
committerOle Loots <ole@monochrom.net>2011-01-30 22:19:28 +0000
commit54e72d1618ab8279d9c14cf3db7e00f2801c272d (patch)
tree58d6ba74432aeacb40e07bb6679b857011a4a055
parent2fbc3bd4a09438b4494fe1a1443ba7fbbc6102e7 (diff)
downloadnetsurf-54e72d1618ab8279d9c14cf3db7e00f2801c272d.tar.gz
netsurf-54e72d1618ab8279d9c14cf3db7e00f2801c272d.tar.bz2
renamed plotter member function pixel_pos to pixel_position.
svn path=/trunk/netsurf/; revision=11546
-rwxr-xr-xatari/font.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/atari/font.c b/atari/font.c
index fb23abd26..524929fed 100755
--- a/atari/font.c
+++ b/atari/font.c
@@ -93,7 +93,7 @@ int atari_to_ucs4(unsigned char atari)
static bool atari_font_position_in_string(const plot_font_style_t * fstyle,const char *string,
size_t length,int x, size_t *char_offset, int *actual_x )
{
- fplotter->pixel_position(fplotter, fstyle, string, length, x, char_offset, actual_x );
+ fplotter->pixel_pos(fplotter, fstyle, string, length, x, char_offset, actual_x );
return( true );
}