mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 08:14:58 +01:00
gtkmm: use size_request() function instead of deprecated Gtk::Widget::size_request(&)
This commit is contained in:
parent
7f649efd42
commit
cb4e10683d
7 changed files with 11 additions and 15 deletions
|
|
@ -97,7 +97,7 @@ Frame::on_size_request (GtkRequisition* r)
|
|||
}
|
||||
|
||||
if (_w) {
|
||||
_w->size_request (*r);
|
||||
*r = _w->size_request ();
|
||||
} else {
|
||||
r->width = 0;
|
||||
r->height = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue