summaryrefslogtreecommitdiff
path: root/gtk/gtkclist.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-12-10 18:02:26 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-12-10 18:02:26 +0000
commit2c3fc13ace6f1bffe66275953bda7ff1e8bca7dd (patch)
tree65487c9438827b3d745b7df90a227d404a3767fa /gtk/gtkclist.c
parent808ff67a5946895d5e22802a47fa323cdd276005 (diff)
downloadgdk-pixbuf-2c3fc13ace6f1bffe66275953bda7ff1e8bca7dd.tar.gz
Fix typo with hadjustment/vadjustment introduce prior to 2.0.0. (#84621,
Tue Dec 10 12:57:00 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkclist.c (adjust_adjustments): Fix typo with hadjustment/vadjustment introduce prior to 2.0.0. (#84621, Charles Kerr)
Diffstat (limited to 'gtk/gtkclist.c')
-rw-r--r--gtk/gtkclist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkclist.c b/gtk/gtkclist.c
index 1e7d2aacd..adb6ef6cd 100644
--- a/gtk/gtkclist.c
+++ b/gtk/gtkclist.c
@@ -6067,9 +6067,9 @@ adjust_adjustments (GtkCList *clist,
{
clist->hadjustment->page_size = clist->clist_window_width;
clist->hadjustment->step_increment = 10;
- clist->vadjustment->page_increment =
- MAX (clist->vadjustment->page_size - clist->vadjustment->step_increment,
- clist->vadjustment->page_size / 2);
+ clist->hadjustment->page_increment =
+ MAX (clist->hadjustment->page_size - clist->hadjustment->step_increment,
+ clist->hadjustment->page_size / 2);
clist->hadjustment->lower = 0;
clist->hadjustment->upper = LIST_WIDTH (clist);