diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-06-07 14:08:46 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-06-09 13:30:54 -0400 |
commit | 2e04899ee59a17b41f3b1accd4a874242d4a03d3 (patch) | |
tree | cb78a48ab08d571f656b5ab893413ac5fa659fdd /gtk/gtkorientable.c | |
parent | 126942f04c44ad4fa7447d4a9773b69ba04afa87 (diff) | |
download | gtk+-2e04899ee59a17b41f3b1accd4a874242d4a03d3.tar.gz |
GtkOrientable use G_PARAM_EXPLICIT_NOTIFY
This one is a little tricky, since we override this property
in many places, and you cannot add flags when overriding. So,
all places where this is overridden will have to make sure to
notify explicitly.
Diffstat (limited to 'gtk/gtkorientable.c')
-rw-r--r-- | gtk/gtkorientable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkorientable.c b/gtk/gtkorientable.c index 6917c4ed2c..0607211d55 100644 --- a/gtk/gtkorientable.c +++ b/gtk/gtkorientable.c @@ -62,7 +62,7 @@ gtk_orientable_default_init (GtkOrientableInterface *iface) P_("The orientation of the orientable"), GTK_TYPE_ORIENTATION, GTK_ORIENTATION_HORIZONTAL, - GTK_PARAM_READWRITE)); + GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY)); } /** |