Method
PangoFontDescriptionmerge
Declaration [src]
void
pango_font_description_merge (
  PangoFontDescription* desc,
  const PangoFontDescription* desc_to_merge,
  gboolean replace_existing
)
Description [src]
Merges the fields that are set in desc_to_merge into the fields in
desc.
If replace_existing is FALSE, only fields in desc that
are not already set are affected. If TRUE, then fields that are
already set will be replaced as well.
If desc_to_merge is NULL, this function performs nothing.
Parameters
- desc_to_merge
- 
            Type: PangoFontDescriptionThe PangoFontDescriptionto merge from, orNULL.The argument can be NULL.The data is owned by the caller of the method. 
- replace_existing
- 
            Type: gbooleanIf TRUE, replace fields indescwith the corresponding values fromdesc_to_merge, even if they are already exist.