diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-10 | 5 | ||||
-rw-r--r-- | pango/pango-layout.c | 6 |
3 files changed, 13 insertions, 3 deletions
@@ -1,5 +1,10 @@ 2005-07-22 Owen Taylor <otaylor@redhat.com> + * pango/pango-layout.c: Add some missing statics on functions + added in the recent layout iter patch. + +2005-07-22 Owen Taylor <otaylor@redhat.com> + * pango/opentype/ftglue.c (ftglue_realloc): Remove an unecessary set of block2. diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index 124dec1f..ae4c1a1a 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,5 +1,10 @@ 2005-07-22 Owen Taylor <otaylor@redhat.com> + * pango/pango-layout.c: Add some missing statics on functions + added in the recent layout iter patch. + +2005-07-22 Owen Taylor <otaylor@redhat.com> + * pango/opentype/ftglue.c (ftglue_realloc): Remove an unecessary set of block2. diff --git a/pango/pango-layout.c b/pango/pango-layout.c index 01d637df..3b924b8a 100644 --- a/pango/pango-layout.c +++ b/pango/pango-layout.c @@ -4700,7 +4700,7 @@ line_is_terminated (PangoLayoutIter *iter) * is set, a line with just an explicit paragraph separator * is considered non-empty. */ -gboolean +static gboolean next_nonempty_line (PangoLayoutIter *iter, gboolean include_terminators) { @@ -4726,7 +4726,7 @@ next_nonempty_line (PangoLayoutIter *iter, * is set, the trailing run at the end of a line with an explicit * paragraph separator is considered non-empty. */ -gboolean +static gboolean next_nonempty_run (PangoLayoutIter *iter, gboolean include_terminators) { @@ -4752,7 +4752,7 @@ next_nonempty_run (PangoLayoutIter *iter, * is set, includes the fake runs/clusters for empty lines. * (But not positions introduced by line wrapping). */ -gboolean +static gboolean next_cluster_internal (PangoLayoutIter *iter, gboolean include_terminators) { |