gtkmm: use size_request() function instead of deprecated Gtk::Widget::size_request(&)

This commit is contained in:
Mads Kiilerich 2022-01-26 22:00:02 +01:00 committed by Robin Gareus
parent 7f649efd42
commit cb4e10683d
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
7 changed files with 11 additions and 15 deletions

View file

@ -127,8 +127,7 @@ Widget::compute_bounding_box () const
if (_allocation) {
_bounding_box = Rect (0, 0, _allocation.width(), _allocation.height());
} else {
GtkRequisition req = { 0, 0 };
_widget.size_request (req);
GtkRequisition req = _widget.size_request ();
_bounding_box = Rect (0., 0., req.width, req.height);
}