diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-09-14 03:33:06 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-09-15 03:02:58 +0200 |
commit | b140884fec56d0ac5f15fe3937879a7a1dd6f0c1 (patch) | |
tree | c891f7828f125fd533e0a36fe6a031c060fbc536 /gtk/gtkprintoperation-win32.c | |
parent | a18e2370bf7349aa61f9c236dd785a45c77d0a84 (diff) | |
download | gtk+-b140884fec56d0ac5f15fe3937879a7a1dd6f0c1.tar.gz |
Use gtk_size_request_get_size() instead deprecated gtk_widget_size_request()
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=629598
Signed-off-by: Javier Jardón <jjardon@gnome.org>
Signed-off-by: Tristan Van Berkom <tristanvb@openismus.com>
Diffstat (limited to 'gtk/gtkprintoperation-win32.c')
-rw-r--r-- | gtk/gtkprintoperation-win32.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/gtkprintoperation-win32.c b/gtk/gtkprintoperation-win32.c index 4281f17ff8..6630019141 100644 --- a/gtk/gtkprintoperation-win32.c +++ b/gtk/gtkprintoperation-win32.c @@ -1411,8 +1411,9 @@ create_application_page (GtkPrintOperation *op) const char *tab_label; /* Make the template the size of the custom widget size request */ - gtk_widget_size_request (op->priv->custom_widget, &requisition); - + gtk_size_request_get_size (GTK_SIZE_REQUEST (op->priv->custom_widget), + &requisition, NULL); + base_units = GetDialogBaseUnits (); baseunitX = LOWORD (base_units); baseunitY = HIWORD (base_units); |