diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-01-16 10:39:02 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-01-16 10:39:02 +0000 |
commit | a0b7b0280f47826749756857250ac270249cfcff (patch) | |
tree | 70fede995fe5ca1175872e9f8aee717a4d253695 | |
parent | 9354b7f487b706ddb693a32fe01cdaf729f0b66b (diff) | |
download | pango-a0b7b0280f47826749756857250ac270249cfcff.tar.gz |
Oops. Replace GType* with GType.
2007-01-16 Behdad Esfahbod <behdad@gnome.org>
* examples/renderdemo.c (parse_enum): Oops. Replace GType* with GType.
svn path=/trunk/; revision=2151
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | examples/renderdemo.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,9 @@ 2007-01-16 Behdad Esfahbod <behdad@gnome.org> + * examples/renderdemo.c (parse_enum): Oops. Replace GType* with GType. + +2007-01-16 Behdad Esfahbod <behdad@gnome.org> + Bug 363510 – Ability to query whether a PangoLayout is effectively ellipsized (as opposed to the set_ellpisize()/get_ellipsize() methods which only set a request, or return the set request respectively) diff --git a/examples/renderdemo.c b/examples/renderdemo.c index 75a5ca4a..ab89b8fe 100644 --- a/examples/renderdemo.c +++ b/examples/renderdemo.c @@ -334,7 +334,7 @@ do_output (PangoContext *context, } static gboolean -parse_enum (GType *type, +parse_enum (GType type, int *value, const char *name, const char *arg, |