+2007-06-18 Behdad Esfahbod <behdad@gnome.org>
+
+ Bug 447568 – improve docs on what absolute size means
+
+ * pango/fonts.c: Improve docs.
+
2007-06-15 Hans Breuer <hans@breuer.org>
* pango/makefile.msc : updated
* value of 10 * PANGO_SCALE gives a 10 pixel font.
*
* Sets the size field of a font description, in device units. This is mutually
- * exclusive with pango_font_description_set_size().
+ * exclusive with pango_font_description_set_size() which sets the font size
+ * in points.
*
* Since: 1.8
**/
* pango_font_description_get_size_is_absolute:
* @desc: a #PangoFontDescription
*
- * Determines whether the size of the font is in points or device units.
+ * Determines whether the size of the font is in points (not absolute) or device units (absolute).
* See pango_font_description_set_size() and pango_font_description_set_absolute_size().
*
* Return value: whether the size for the font description is in
result = pango_font_description_to_string (desc);
+ /* XXX This should be rewritten to read char-by-char instead
+ * of byte-by-byte, to be Unicode safe.
+ */
p = result;
while (*p)
{