summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@src.gnome.org>1998-03-05 06:46:41 +0000
committerOwen Taylor <otaylor@src.gnome.org>1998-03-05 06:46:41 +0000
commit1ac59c103de66366bd5aedd4f8a5921ac6a755a9 (patch)
tree24eb4ceea9add98102ee0995470ff984189b2512 /gtk
parentba55b3f94ba99f24b424c879eaeafe47b932f189 (diff)
downloadgtk+-1ac59c103de66366bd5aedd4f8a5921ac6a755a9.tar.gz
Old stuff that didn't get commited. (owt)
* gtk/gtkinputdialog.h (struct _GtkInputDialogClass): removed 'gpointer data' arguments from default handler structures. * gtk/gtktreeitem.[ch]: Keep track of separate +/- pixmaps for each colormap, removed the idle hack. * testglib.c: Remove trailing ; after functions ----------------------------------------------------------------------
Diffstat (limited to 'gtk')
-rw-r--r--gtk/gtkinputdialog.h6
-rw-r--r--gtk/gtktreeitem.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkinputdialog.h b/gtk/gtkinputdialog.h
index 69146836f6..ab082b5827 100644
--- a/gtk/gtkinputdialog.h
+++ b/gtk/gtkinputdialog.h
@@ -59,11 +59,9 @@ struct _GtkInputDialogClass
GtkWindowClass parent_class;
void (* enable_device) (GtkInputDialog *inputd,
- guint32 devid,
- gpointer *data);
+ guint32 devid);
void (* disable_device) (GtkInputDialog *inputd,
- guint32 devid,
- gpointer *data);
+ guint32 devid);
};
diff --git a/gtk/gtktreeitem.h b/gtk/gtktreeitem.h
index 035e016330..8093620f9d 100644
--- a/gtk/gtktreeitem.h
+++ b/gtk/gtktreeitem.h
@@ -45,6 +45,8 @@ struct _GtkTreeItem
GtkWidget *pixmaps_box;
GtkWidget *plus_pix_widget, *minus_pix_widget;
+ GList *pixmaps; /* pixmap node for this items color depth */
+
guint expanded : 1;
};