diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | ChangeLog.pre-1-10 | 9 | ||||
-rw-r--r-- | ChangeLog.pre-1-6 | 9 | ||||
-rw-r--r-- | ChangeLog.pre-1-8 | 9 | ||||
-rw-r--r-- | pango/pangofc-decoder.c | 4 | ||||
-rw-r--r-- | pango/pangofc-decoder.h | 6 |
6 files changed, 42 insertions, 4 deletions
@@ -1,3 +1,12 @@ +2004-06-17 Christopher Blizzard <blizzard@redhat.com> + + * pango/pangofc-decoder.c (pango_fc_decoder_get_glyph, + pango_fc_decoder_get_charset): Changes to support extra arguments. + + * pango/pangofc-decoder.h (struct _PangoFcDecoderClass): Add the + PangoFcDecoder * as the first argument to the callbacks for + get_glyph and get_charset. + Wed Jun 9 17:32:59 2004 Christopher Blizzard <blizzard@redhat.com> * pango/Makefile.am: Add export of pangofc-decoder.h. Build diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index 3df0d798..c2c3b919 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,3 +1,12 @@ +2004-06-17 Christopher Blizzard <blizzard@redhat.com> + + * pango/pangofc-decoder.c (pango_fc_decoder_get_glyph, + pango_fc_decoder_get_charset): Changes to support extra arguments. + + * pango/pangofc-decoder.h (struct _PangoFcDecoderClass): Add the + PangoFcDecoder * as the first argument to the callbacks for + get_glyph and get_charset. + Wed Jun 9 17:32:59 2004 Christopher Blizzard <blizzard@redhat.com> * pango/Makefile.am: Add export of pangofc-decoder.h. Build diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6 index 3df0d798..c2c3b919 100644 --- a/ChangeLog.pre-1-6 +++ b/ChangeLog.pre-1-6 @@ -1,3 +1,12 @@ +2004-06-17 Christopher Blizzard <blizzard@redhat.com> + + * pango/pangofc-decoder.c (pango_fc_decoder_get_glyph, + pango_fc_decoder_get_charset): Changes to support extra arguments. + + * pango/pangofc-decoder.h (struct _PangoFcDecoderClass): Add the + PangoFcDecoder * as the first argument to the callbacks for + get_glyph and get_charset. + Wed Jun 9 17:32:59 2004 Christopher Blizzard <blizzard@redhat.com> * pango/Makefile.am: Add export of pangofc-decoder.h. Build diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8 index 3df0d798..c2c3b919 100644 --- a/ChangeLog.pre-1-8 +++ b/ChangeLog.pre-1-8 @@ -1,3 +1,12 @@ +2004-06-17 Christopher Blizzard <blizzard@redhat.com> + + * pango/pangofc-decoder.c (pango_fc_decoder_get_glyph, + pango_fc_decoder_get_charset): Changes to support extra arguments. + + * pango/pangofc-decoder.h (struct _PangoFcDecoderClass): Add the + PangoFcDecoder * as the first argument to the callbacks for + get_glyph and get_charset. + Wed Jun 9 17:32:59 2004 Christopher Blizzard <blizzard@redhat.com> * pango/Makefile.am: Add export of pangofc-decoder.h. Build diff --git a/pango/pangofc-decoder.c b/pango/pangofc-decoder.c index 41e8c141..ff177b1e 100644 --- a/pango/pangofc-decoder.c +++ b/pango/pangofc-decoder.c @@ -60,7 +60,7 @@ pango_fc_decoder_get_charset (PangoFcDecoder *decoder, { g_return_val_if_fail (PANGO_IS_FC_DECODER (decoder), NULL); - return PANGO_FC_DECODER_GET_CLASS (decoder)->get_charset (fcfont); + return PANGO_FC_DECODER_GET_CLASS (decoder)->get_charset (decoder, fcfont); } /** @@ -84,5 +84,5 @@ pango_fc_decoder_get_glyph (PangoFcDecoder *decoder, { g_return_val_if_fail (PANGO_IS_FC_DECODER (decoder), 0); - return PANGO_FC_DECODER_GET_CLASS (decoder)->get_glyph (fcfont, wc); + return PANGO_FC_DECODER_GET_CLASS (decoder)->get_glyph (decoder, fcfont, wc); } diff --git a/pango/pangofc-decoder.h b/pango/pangofc-decoder.h index 34b5f180..0178ab1b 100644 --- a/pango/pangofc-decoder.h +++ b/pango/pangofc-decoder.h @@ -84,8 +84,10 @@ struct _PangoFcDecoderClass /* vtable - not signals */ /*< public >*/ - FcCharSet *(*get_charset) (PangoFcFont *fcfont); - PangoGlyph (*get_glyph) (PangoFcFont *fcfont, + FcCharSet *(*get_charset) (PangoFcDecoder *decoder, + PangoFcFont *fcfont); + PangoGlyph (*get_glyph) (PangoFcDecoder *decoder, + PangoFcFont *fcfont, guint32 wc); /*< private >*/ |