summaryrefslogtreecommitdiff
path: root/pango/pango-attributes.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2000-04-03 19:16:36 +0000
committerOwen Taylor <otaylor@src.gnome.org>2000-04-03 19:16:36 +0000
commitf3542cd8e6a4f666b3c39cb8d562a88369d9e858 (patch)
tree469cf50ef8da81606ccf592ead1b759f2dcdf8b4 /pango/pango-attributes.c
parentc1198ebb48f2eaf3e71a5f37b4ceaae16cba84d7 (diff)
downloadpango-f3542cd8e6a4f666b3c39cb8d562a88369d9e858.tar.gz
Fix off-by-one error for RTL runs.
Mon Apr 3 15:16:06 2000 Owen Taylor <otaylor@redhat.com> * pango/glyphstring.c (pango_glyph_string_get_logical_widths): Fix off-by-one error for RTL runs. * configure.in: Add -lglib to AC_CHECK_LIB(fribidi...) (How did this work?) From Matt Wilson. * pango/pango-layout.c (pango_layout_check_lines): Correctly deal with handling character offsets when breaking lines. * modules/arabic/arabic.c (arabic_engine_shape): Fix problem with setting unknown glyph when no arabic-capable font found. Fri Mar 31 11:29:47 2000 Owen Taylor <otaylor@redhat.com> * pango/pangox.[ch] (pango_x_render_layout[_line]) examples/viewer.c: Add capability to render foreground / background colors. The interfaces here are possibly certainly not right, or convenient, but they should be a start.
Diffstat (limited to 'pango/pango-attributes.c')
-rw-r--r--pango/pango-attributes.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pango/pango-attributes.c b/pango/pango-attributes.c
index 52a1cbaf..19f0e9fc 100644
--- a/pango/pango-attributes.c
+++ b/pango/pango-attributes.c
@@ -199,7 +199,7 @@ pango_attr_color_copy (const PangoAttribute *attr)
const PangoAttrColor *color_attr = (PangoAttrColor *)attr;
return pango_attr_color_new (attr->klass,
- color_attr->red, color_attr->blue, color_attr->green);
+ color_attr->red, color_attr->green, color_attr->blue);
}
static void
@@ -979,6 +979,8 @@ pango_attr_iterator_get_font (PangoAttrIterator *iterator,
found = TRUE;
break;
}
+
+ tmp_list2 = tmp_list2->next;
}
if (!found)