searchbar: Use g_object_notify_by_pspec
authorTimm Bäder <mail@baedert.org>
Tue, 28 Jan 2020 12:51:04 +0000 (13:51 +0100)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 7 Feb 2020 18:15:59 +0000 (13:15 -0500)
We already keep the pspecs around, so use them.

gtk/gtksearchbar.c

index 51071b3049a646bf6232668065aa0f9f58731a38..18ed0d66e321ff5b9f64c871215ad1ec03147916 100644 (file)
@@ -150,7 +150,7 @@ reveal_child_changed_cb (GObject      *object,
         gtk_editable_set_text (GTK_EDITABLE (priv->entry), "");
     }
 
-  g_object_notify (G_OBJECT (bar), "search-mode-enabled");
+  g_object_notify_by_pspec (G_OBJECT (bar), widget_props[PROP_SEARCH_MODE_ENABLED]);
 }
 
 static void
@@ -510,7 +510,7 @@ gtk_search_bar_set_show_close_button (GtkSearchBar *bar,
   if (gtk_widget_get_visible (priv->close_button) != visible)
     {
       gtk_widget_set_visible (priv->close_button, visible);
-      g_object_notify (G_OBJECT (bar), "show-close-button");
+      g_object_notify_by_pspec (G_OBJECT (bar), widget_props[PROP_SHOW_CLOSE_BUTTON]);
     }
 }