diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-06-07 16:38:34 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-06-09 13:30:54 -0400 |
commit | 5ce3d8e74fa8ebe06806be26499e5ea548f21d53 (patch) | |
tree | 7e2542bfd3fb89fdc06d84c97b3bbeb375b11988 /gtk/gtkappchooserbutton.c | |
parent | d6cae074a6f9ef2c938686f10401f67bc553f242 (diff) | |
download | gtk+-5ce3d8e74fa8ebe06806be26499e5ea548f21d53.tar.gz |
GtkAppChooserButton: Use G_PARAM_EXPLICIT_NOTIFY
Diffstat (limited to 'gtk/gtkappchooserbutton.c')
-rw-r--r-- | gtk/gtkappchooserbutton.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkappchooserbutton.c b/gtk/gtkappchooserbutton.c index af910c8d01..ea4bd905f7 100644 --- a/gtk/gtkappchooserbutton.c +++ b/gtk/gtkappchooserbutton.c @@ -616,7 +616,7 @@ gtk_app_chooser_button_class_init (GtkAppChooserButtonClass *klass) P_("Include an 'Other…' item"), P_("Whether the combobox should include an item that triggers a GtkAppChooserDialog"), FALSE, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS); + G_PARAM_READWRITE|G_PARAM_CONSTRUCT|G_PARAM_STATIC_STRINGS|G_PARAM_EXPLICIT_NOTIFY); g_object_class_install_property (oclass, PROP_SHOW_DIALOG_ITEM, pspec); /** @@ -633,7 +633,7 @@ gtk_app_chooser_button_class_init (GtkAppChooserButtonClass *klass) P_("Show default item"), P_("Whether the combobox should show the default application on top"), FALSE, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS); + G_PARAM_READWRITE|G_PARAM_CONSTRUCT|G_PARAM_STATIC_STRINGS|G_PARAM_EXPLICIT_NOTIFY); g_object_class_install_property (oclass, PROP_SHOW_DEFAULT_ITEM, pspec); @@ -647,7 +647,7 @@ gtk_app_chooser_button_class_init (GtkAppChooserButtonClass *klass) P_("Heading"), P_("The text to show at the top of the dialog"), NULL, - G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); + G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS|G_PARAM_EXPLICIT_NOTIFY); g_object_class_install_property (oclass, PROP_HEADING, pspec); |