diff options
author | Havoc Pennington <hp@src.gnome.org> | 2000-05-26 03:08:05 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2000-05-26 03:08:05 +0000 |
commit | 3143ddb0df0c1c9ed7d22397b9d72534844f5c4b (patch) | |
tree | 650d6081f6ecf2e797141078f23478b1cff265cb /gtk/gtkhandlebox.c | |
parent | 5b894c227873a583d01c74ffc8d7f50aca7ca80f (diff) | |
download | gtk+-gdk-object.tar.gz |
GtkStyle becomes a GObject, and xthickness/ythickness moved to instance structgdk-object
Diffstat (limited to 'gtk/gtkhandlebox.c')
-rw-r--r-- | gtk/gtkhandlebox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkhandlebox.c b/gtk/gtkhandlebox.c index ef2d7ad0c2..3060dfb53c 100644 --- a/gtk/gtkhandlebox.c +++ b/gtk/gtkhandlebox.c @@ -515,9 +515,9 @@ gtk_handle_box_size_request (GtkWidget *widget, { if (hb->handle_position == GTK_POS_LEFT || hb->handle_position == GTK_POS_RIGHT) - requisition->height += widget->style->klass->ythickness; + requisition->height += widget->style->ythickness; else - requisition->width += widget->style->klass->xthickness; + requisition->width += widget->style->xthickness; } } else |