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 771107 - Remove deprecated widgets
Remove deprecated widgets
Status: RESOLVED FIXED
Product: sound-juicer
Classification: Applications
Component: general
git master
Other All
: Normal normal
: ---
Assigned To: Sound Juicer Maintainers
Sound Juicer Maintainers
Depends on:
Blocks:
 
 
Reported: 2016-09-09 09:23 UTC by Phillip Wood
Modified: 2017-02-13 10:56 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Replace GtkTable with GtkGrid (13.24 KB, patch)
2016-09-09 09:23 UTC, Phillip Wood
committed Details | Review
Replace Gtk[HV]Box with GtkBox (4.69 KB, patch)
2016-09-09 09:23 UTC, Phillip Wood
committed Details | Review
Remove unneeded box properties and packing attributes (9.67 KB, patch)
2016-09-09 09:23 UTC, Phillip Wood
committed Details | Review
Replace call to deprecated function (2.47 KB, patch)
2016-09-09 17:37 UTC, Phillip Wood
committed Details | Review

Description Phillip Wood 2016-09-09 09:23:31 UTC
They’re going to be removed in Gtk4
Comment 1 Phillip Wood 2016-09-09 09:23:35 UTC
Created attachment 335163 [details] [review]
Replace GtkTable with GtkGrid

GtkTable is deprecated.
Comment 2 Phillip Wood 2016-09-09 09:23:39 UTC
Created attachment 335164 [details] [review]
Replace Gtk[HV]Box with GtkBox

They’re deprecated.
Comment 3 Phillip Wood 2016-09-09 09:23:45 UTC
Created attachment 335165 [details] [review]
Remove unneeded box properties and packing attributes

The content area of GtkDialog has vertical orientation so we don’t need
to set it in the ui file. Similarly GtkScale defaults to being
horizontal. The position child property of GtkBox defaults to zero and
the expand and fill child properties are not needed.
Comment 4 Phillip Wood 2016-09-09 17:37:44 UTC
Created attachment 335211 [details] [review]
Replace call to deprecated function

gtk_application_add_accelerator() has been replaced by
gtk_application_set_accels_for_action().
Comment 5 Phillip Wood 2017-02-13 10:56:19 UTC
Attachment 335163 [details] pushed as 4a239a2 - Replace GtkTable with GtkGrid
Attachment 335164 [details] pushed as 14e8736 - Replace Gtk[HV]Box with GtkBox
Attachment 335165 [details] pushed as 690984b - Remove unneeded box properties and packing attributes
Attachment 335211 [details] pushed as 3416577 - Replace call to deprecated function