summaryrefslogtreecommitdiff
path: root/examples/pangowin32tobmp.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-01-10 09:55:52 -0500
committerMatthias Clasen <mclasen@redhat.com>2022-01-10 10:02:57 -0500
commit1bb2a1f7d226cd1e7026bcb127598e6c5ba9a8af (patch)
treee2d2f2148fcbfa77b9fd241397c46a859cce98b2 /examples/pangowin32tobmp.c
parent3a3bc5a734c7ac35b00be3810ba81329b943d6c5 (diff)
downloadpango-1bb2a1f7d226cd1e7026bcb127598e6c5ba9a8af.tar.gz
Drop uses of pango_coverage_ref/unref
Just use g_object_ref/unref.
Diffstat (limited to 'examples/pangowin32tobmp.c')
-rw-r--r--examples/pangowin32tobmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pangowin32tobmp.c b/examples/pangowin32tobmp.c
index a71017e7..c27eac94 100644
--- a/examples/pangowin32tobmp.c
+++ b/examples/pangowin32tobmp.c
@@ -125,7 +125,7 @@ int main (int argc, char **argv)
/* ... */
- pango_coverage_unref (coverage);
+ g_object_unref (coverage);
pango_font_description_free (desc);
g_object_unref (font);
}
@@ -239,7 +239,7 @@ int main (int argc, char **argv)
pango_glyph_string_free (glyphs);
pango_item_free (item);
- pango_coverage_unref (coverage);
+ g_object_unref (coverage);
g_object_unref (font);
}
pango_font_description_free (desc);