summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
Diffstat (limited to 'gtk')
-rw-r--r--gtk/gtkclist.c5
-rw-r--r--gtk/gtkclist.h2
2 files changed, 0 insertions, 7 deletions
diff --git a/gtk/gtkclist.c b/gtk/gtkclist.c
index 43d96c004f..30436e4b64 100644
--- a/gtk/gtkclist.c
+++ b/gtk/gtkclist.c
@@ -43,9 +43,6 @@
/* used for auto-scrolling */
#define SCROLL_TIME 100
-/* scrollbar spacing class macro */
-#define SCROLLBAR_SPACING(w) (GTK_CLIST_CLASS (GTK_OBJECT (w)->klass)->scrollbar_spacing)
-
/* gives the top pixel of the given row in context of
* the clist's voffset */
#define ROW_TOP_YPIXEL(clist, row) (((clist)->row_height * (row)) + \
@@ -596,8 +593,6 @@ gtk_clist_class_init (GtkCListClass *klass)
klass->set_cell_contents = set_cell_contents;
klass->cell_size_request = cell_size_request;
- klass->scrollbar_spacing = 5;
-
{
GtkBindingSet *binding_set;
diff --git a/gtk/gtkclist.h b/gtk/gtkclist.h
index 3f20066a12..5d8c457c4d 100644
--- a/gtk/gtkclist.h
+++ b/gtk/gtkclist.h
@@ -252,8 +252,6 @@ struct _GtkCListClass
GtkCListRow *clist_row,
gint column,
GtkRequisition *requisition);
-
- gint scrollbar_spacing;
};
struct _GtkCListColumn