aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-12-16 01:35:20 +0800
committerChris Lahey <clahey@src.gnome.org>2000-12-16 01:35:20 +0800
commit4d0734f89194e3fb69ec15dc56b3b8b4560d759c (patch)
tree86779a9350d63eb6e83a52490dbe11e48079cda4 /widgets/misc
parenta95769cf41fb61db70da3bdc25f936ea83d797c0 (diff)
downloadgsoc2013-evolution-4d0734f89194e3fb69ec15dc56b3b8b4560d759c.tar
gsoc2013-evolution-4d0734f89194e3fb69ec15dc56b3b8b4560d759c.tar.gz
gsoc2013-evolution-4d0734f89194e3fb69ec15dc56b3b8b4560d759c.tar.bz2
gsoc2013-evolution-4d0734f89194e3fb69ec15dc56b3b8b4560d759c.tar.lz
gsoc2013-evolution-4d0734f89194e3fb69ec15dc56b3b8b4560d759c.tar.xz
gsoc2013-evolution-4d0734f89194e3fb69ec15dc56b3b8b4560d759c.tar.zst
gsoc2013-evolution-4d0734f89194e3fb69ec15dc56b3b8b4560d759c.zip
Upped the version number to 0.4.1. Bumped the GAL_REVISION to 1.
2000-12-15 Christopher James Lahey <clahey@helixcode.com> * configure.in: Upped the version number to 0.4.1. Bumped the GAL_REVISION to 1. 2000-12-14 Christopher James Lahey <clahey@helixcode.com> * gal/widgets/e-canvas-vbox.c (e_canvas_vbox_event): Don't allow the arrow keys to let you scroll off of the table. * NEWS: Changed the NEWS format. svn path=/trunk/; revision=7049
Diffstat (limited to 'widgets/misc')
-rw-r--r--widgets/misc/e-canvas-vbox.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/widgets/misc/e-canvas-vbox.c b/widgets/misc/e-canvas-vbox.c
index 4e1eb459dc..9735dad23a 100644
--- a/widgets/misc/e-canvas-vbox.c
+++ b/widgets/misc/e-canvas-vbox.c
@@ -34,9 +34,7 @@ static void e_canvas_vbox_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
static void e_canvas_vbox_get_arg (GtkObject *object, GtkArg *arg, guint arg_id);
static void e_canvas_vbox_destroy (GtkObject *object);
-#if 0
static gint e_canvas_vbox_event (GnomeCanvasItem *item, GdkEvent *event);
-#endif
static void e_canvas_vbox_realize (GnomeCanvasItem *item);
static void e_canvas_vbox_reflow (GnomeCanvasItem *item, int flags);
@@ -104,9 +102,7 @@ e_canvas_vbox_class_init (ECanvasVboxClass *klass)
object_class->destroy = e_canvas_vbox_destroy;
/* GnomeCanvasItem method overrides */
-#if 0
item_class->event = e_canvas_vbox_event;
-#endif
item_class->realize = e_canvas_vbox_realize;
}
@@ -179,7 +175,6 @@ e_canvas_vbox_destroy (GtkObject *object)
GTK_OBJECT_CLASS(parent_class)->destroy (object);
}
-#if 0
static gint
e_canvas_vbox_event (GnomeCanvasItem *item, GdkEvent *event)
{
@@ -188,8 +183,6 @@ e_canvas_vbox_event (GnomeCanvasItem *item, GdkEvent *event)
switch (event->type) {
case GDK_KEY_PRESS:
switch (event->key.keyval) {
- case GDK_KP_Tab:
- case GDK_ISO_Left_Tab:
case GDK_Left:
case GDK_KP_Left:
case GDK_Right:
@@ -218,7 +211,6 @@ e_canvas_vbox_event (GnomeCanvasItem *item, GdkEvent *event)
return return_val;
}
-#endif
static void
e_canvas_vbox_realize (GnomeCanvasItem *item)