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:
parent
667af24c73
commit
1bee0ddf26
|
@ -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() ) ) ;
|
||||
|
|
Loading…
Reference in New Issue