fontbutton: Shorten clear_font_data a bit
authorTimm Bäder <mail@baedert.org>
Fri, 13 Sep 2019 12:28:48 +0000 (14:28 +0200)
committerTimm Bäder <mail@baedert.org>
Fri, 13 Sep 2019 17:21:02 +0000 (19:21 +0200)
gtk/gtkfontbutton.c

index 72d71a7fb82265fd706c3b87de5e603aff9b45b2..79ac0c31ed79b4f8411bc4e37eeb16f85b2a4b00 100644 (file)
@@ -190,23 +190,11 @@ clear_font_data (GtkFontButton *font_button)
 {
   GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
 
-  if (priv->font_family)
-    g_object_unref (priv->font_family);
-  priv->font_family = NULL;
-
-  if (priv->font_face)
-    g_object_unref (priv->font_face);
-  priv->font_face = NULL;
-
-  if (priv->font_desc)
-    pango_font_description_free (priv->font_desc);
-  priv->font_desc = NULL;
-
-  g_free (priv->fontname);
-  priv->fontname = NULL;
-
-  g_free (priv->font_features);
-  priv->font_features = NULL;
+  g_clear_object (&priv->font_family);
+  g_clear_object (&priv->font_face);
+  g_clear_pointer (&priv->font_desc, pango_font_description_free);
+  g_clear_pointer (&priv->fontname, g_free);
+  g_clear_pointer (&priv->font_features, g_free);
 }
 
 static void