summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2005-07-22 18:24:57 +0000
committerOwen Taylor <otaylor@src.gnome.org>2005-07-22 18:24:57 +0000
commita998706c418584d6776e613925e8d7e633eebe8c (patch)
tree894b868ca1caad909419bb78cb07de4f546bd34e
parent987e1804f4b3b4bed7bd6a06f00a85bc9844ee64 (diff)
downloadpango-a998706c418584d6776e613925e8d7e633eebe8c.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 124dec1f..ae4c1a1a 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 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)
{