summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Blizzard <blizzard@redhat.com>2004-06-17 20:26:42 +0000
committerChristopher Blizzard <blizzard@src.gnome.org>2004-06-17 20:26:42 +0000
commit329566a3e3af0cfebdb561978e6622ebe8208108 (patch)
tree2a001b6660c5fb553bef42d4a297b5ba70babb71
parent5ca931f88a431fa7158a8e406d3bf92a1bdafd07 (diff)
downloadpango-329566a3e3af0cfebdb561978e6622ebe8208108.tar.gz
Changes to support extra arguments.
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.
-rw-r--r--ChangeLog9
-rw-r--r--ChangeLog.pre-1-109
-rw-r--r--ChangeLog.pre-1-69
-rw-r--r--ChangeLog.pre-1-89
-rw-r--r--pango/pangofc-decoder.c4
-rw-r--r--pango/pangofc-decoder.h6
6 files changed, 42 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 3df0d798..c2c3b919 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 >*/