aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-click-to-add.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-10-31 04:12:57 +0800
committerChris Lahey <clahey@src.gnome.org>2001-10-31 04:12:57 +0800
commit6922ceef9e0b05a3329ca0e7cfcbca68e29f9144 (patch)
tree96ee636034760c488e53210e4bda0ff10270ba27 /widgets/table/e-table-click-to-add.c
parent0c26a779918ea2188d2944f17e0213862acef21b (diff)
downloadgsoc2013-evolution-6922ceef9e0b05a3329ca0e7cfcbca68e29f9144.tar
gsoc2013-evolution-6922ceef9e0b05a3329ca0e7cfcbca68e29f9144.tar.gz
gsoc2013-evolution-6922ceef9e0b05a3329ca0e7cfcbca68e29f9144.tar.bz2
gsoc2013-evolution-6922ceef9e0b05a3329ca0e7cfcbca68e29f9144.tar.lz
gsoc2013-evolution-6922ceef9e0b05a3329ca0e7cfcbca68e29f9144.tar.xz
gsoc2013-evolution-6922ceef9e0b05a3329ca0e7cfcbca68e29f9144.tar.zst
gsoc2013-evolution-6922ceef9e0b05a3329ca0e7cfcbca68e29f9144.zip
Remove point handler and just let GnomeCanvasGroup handle it.
2001-10-30 Christopher James Lahey <clahey@ximian.com> * e-table-click-to-add.c (etcta_class_init): Remove point handler and just let GnomeCanvasGroup handle it. * e-table.c (e_table_commit_click_to_add): Don't commit the click_to_add if there's no click_to_add to commit. svn path=/trunk/; revision=14476
Diffstat (limited to 'widgets/table/e-table-click-to-add.c')
-rw-r--r--widgets/table/e-table-click-to-add.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/widgets/table/e-table-click-to-add.c b/widgets/table/e-table-click-to-add.c
index 4e32b3d674..7c42b8c2e1 100644
--- a/widgets/table/e-table-click-to-add.c
+++ b/widgets/table/e-table-click-to-add.c
@@ -271,14 +271,6 @@ etcta_unrealize (GnomeCanvasItem *item)
(*GNOME_CANVAS_ITEM_CLASS (etcta_parent_class)->unrealize)(item);
}
-static double
-etcta_point (GnomeCanvasItem *item, double x, double y, int cx, int cy,
- GnomeCanvasItem **actual_item)
-{
- *actual_item = item;
- return 0.0;
-}
-
static void finish_editing (ETableClickToAdd *etcta);
static int
@@ -345,7 +337,7 @@ static int
etcta_event (GnomeCanvasItem *item, GdkEvent *e)
{
ETableClickToAdd *etcta = E_TABLE_CLICK_TO_ADD (item);
-
+
switch (e->type){
case GDK_BUTTON_PRESS:
if (etcta->text) {
@@ -447,7 +439,6 @@ etcta_class_init (ETableClickToAddClass *klass)
item_class->realize = etcta_realize;
item_class->unrealize = etcta_unrealize;
- item_class->point = etcta_point;
item_class->event = etcta_event;
gtk_object_add_arg_type ("ETableClickToAdd::header", GTK_TYPE_OBJECT,