GNOME Bugzilla – Bug 372760
small cruft in ephy-notebook.c (easy)
Last modified: 2006-11-12 13:35:25 UTC
build_tab_label() in ephy-notebook.c: gtk_button_set_relief (GTK_BUTTON (close_button), GTK_RELIEF_NONE); /* don't allow focus on the close button */ gtk_button_set_focus_on_click (GTK_BUTTON (close_button), FALSE); gtk_button_set_relief (GTK_BUTTON (close_button), GTK_RELIEF_NONE); one of those set_relief can probably go.
while you're at it, this is a few lines down: gtk_rc_style_unref (rcstyle), obviously should be a ; instead of ,
Feel free to commit the removal of the 2nd _set_relief. The ';' issue was fixed on HEAD already.
2006-11-12 Ryan Lortie <desrt@desrt.ca> * src/ephy-notebook.c (build_tab_label): Remove redundant gtk_button_set_relief call. Fixes bug #372760.