comparison libpurple/util.h @ 16201:36b09c6f7957

Doxygen updates. This eliminated all the warnings from Doxygen.
author Richard Laager <rlaager@wiktel.com>
date Mon, 16 Apr 2007 05:07:21 +0000
parents a740afef2daf
children 391a79778f89
comparison
equal deleted inserted replaced
16200:470caa5fe675 16201:36b09c6f7957
481 const char * purple_markup_unescape_entity(const char *text, int *length); 481 const char * purple_markup_unescape_entity(const char *text, int *length);
482 482
483 /** 483 /**
484 * Returns a newly allocated string containing the value of the CSS property specified 484 * Returns a newly allocated string containing the value of the CSS property specified
485 * in opt. The @a style argument is expected to point to a HTML inline CSS. 485 * in opt. The @a style argument is expected to point to a HTML inline CSS.
486 * (i.e. <span style="[inline css]"> ) The function will seek for the CSS property and 486 * The function will seek for the CSS property and return its value.
487 * return its value. 487 *
488 * 488 * For example, purple_markup_get_css_property("direction:rtl;color:#dc4d1b;",
489 * For example, purple_markup_get_css_property("direction:rtl;color:#dc4d1b;", "color") 489 * "color") would return "#dc4d1b".
490 * would return "#dc4d1b". 490 *
491 * 491 * On error or if the requested property was not found, the function returns
492 * On error or if the requested property was not found, the function returns @c NULL. 492 * @c NULL.
493 * 493 *
494 * @param style A string containing the inline CSS text. 494 * @param style A string containing the inline CSS text.
495 * @param opt The requested CSS property. 495 * @param opt The requested CSS property.
496 * 496 *
497 * @return The value of the requested CSS property. 497 * @return The value of the requested CSS property.