Use Gtk::Box for Dialog_FileSystem_Label (!25)

Gtk::HBox and Gtk::VBox were deprecated in Gtkmm 3.2.  Replace with
plain Gtk::Box.

This commit makes the change for Dialog_FileSystem_Label.cc.

Closes !25 - Modern Gtk3 - part 1
This commit is contained in:
Luca Bacci 2019-02-27 16:47:58 +01:00 committed by Mike Fleetwood
parent ca4c4160cc
commit 784a4977b1
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ Dialog_FileSystem_Label::Dialog_FileSystem_Label( const Partition & partition )
/* TO TRANSLATORS: dialog title, looks like Set file system label on /dev/hda3 */
this->set_title( Glib::ustring::compose( _("Set file system label on %1"), partition.get_path() ) );
// HBox to hold the label and entry box line
Gtk::HBox *hbox( manage( new Gtk::HBox() ) );
// Horizontal box to hold the label and entry box line
Gtk::Box *hbox(manage(new Gtk::Box(Gtk::ORIENTATION_HORIZONTAL)));
hbox->set_border_width( 5 );
hbox->set_spacing( 10 );
get_vbox()->pack_start( *hbox, Gtk::PACK_SHRINK );