summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2005-07-22 18:09:52 +0000
committerOwen Taylor <otaylor@src.gnome.org>2005-07-22 18:09:52 +0000
commita588fa4b7a8bae21fd088e96c0a061959eeba1e6 (patch)
treeeeefc58be4ca8c438521413074302fa14434bbf9
parent5989e2082a25b418d3c2bcc5c51ae96d874faa34 (diff)
downloadpango-a588fa4b7a8bae21fd088e96c0a061959eeba1e6.tar.gz
Add some missing statics on functions added in the recent layout iter
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.
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-1-105
-rw-r--r--pango/pango-layout.c6
3 files changed, 13 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 1d421b5c..01b0aca3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 1d421b5c..01b0aca3 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 2ff94e5f..f77004c4 100644
--- a/pango/pango-layout.c
+++ b/pango/pango-layout.c
@@ -4677,7 +4677,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)
{
@@ -4703,7 +4703,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)
{
@@ -4729,7 +4729,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)
{