After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 108305 - Missing notification for GtkFrame::label
Missing notification for GtkFrame::label
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Widget: Other
2.2.x
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2003-03-13 15:07 UTC by Owen Taylor
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
patch to fix (479 bytes, patch)
2003-05-08 22:20 UTC, Charles Schmidt
none Details | Review
oops, forgot about freeze/thaw notify, good call ;) (606 bytes, patch)
2003-05-13 04:42 UTC, Charles Schmidt
none Details | Review

Description Owen Taylor 2003-03-13 15:07:15 UTC
Looks to me like:

 gtk_frame_set_label_widget()

doesnt't queue a notification for the ::label property,
but does change it. (See gtk_frame_get_label())
Comment 1 Charles Schmidt 2003-05-08 22:20:02 UTC
Created attachment 16377 [details] [review]
patch to fix
Comment 2 Matthias Clasen 2003-05-09 06:45:29 UTC
Methods which change multiple properties should sent the notifications 
in one batch by freezing/thawing notifications around the 
g_object_notify calls, see g_object_freeze_notify().
Comment 3 Charles Schmidt 2003-05-13 04:42:38 UTC
Created attachment 16479 [details] [review]
oops, forgot about freeze/thaw notify, good call ;)
Comment 4 Owen Taylor 2003-05-14 21:30:30 UTC
Wed May 14 16:40:09 2003  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkframe.c (gtk_frame_set_label_widget): Patch
        from Charles Schmidt to add missing notify (#108305)