Use Gtk::Separator (!25)

Gtk::HSeparator was deprecated in Gtkmm 3.2.  Replace with plain
Gtk::Separator.

Closes !25 - Modern Gtk3 - part 1
This commit is contained in:
Luca Bacci 2019-02-27 17:59:20 +01:00 committed by Mike Fleetwood
parent 667af24c73
commit 1bee0ddf26
1 changed files with 1 additions and 1 deletions

View File

@ -3501,7 +3501,7 @@ bool Win_GParted::remove_non_empty_lvm2_pv_dialog( const OperationType optype )
// text in the dialog.
Gtk::Box * msg_area = dialog .get_message_area() ;
Gtk::HSeparator * hsep( manage( new Gtk::HSeparator() ) ) ;
Gtk::Separator *hsep(manage(new Gtk::Separator(Gtk::ORIENTATION_HORIZONTAL)));
msg_area ->pack_start( * hsep ) ;
Gtk::Table * table( manage( new Gtk::Table() ) ) ;