From c4a7e58fc8a4aaf2653093de0b79465a071b0b3b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 9 Aug 2012 01:51:12 +0000 Subject: Fix prototypes. git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@4632 a436a847-0d15-0410-975c-d299462d15a1 --- src/port.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/port.c') diff --git a/src/port.c b/src/port.c index 5f835dc..3ba95b8 100644 --- a/src/port.c +++ b/src/port.c @@ -263,7 +263,7 @@ ganv_port_set_height(GanvBox* box, } static gboolean -event(GanvItem* item, GdkEvent* event) +ganv_port_event(GanvItem* item, GdkEvent* event) { GanvCanvas* canvas = GANV_CANVAS(item->canvas); @@ -306,7 +306,7 @@ ganv_port_class_init(GanvPortClass* class) object_class->destroy = ganv_port_destroy; - item_class->event = event; + item_class->event = ganv_port_event; item_class->draw = ganv_port_draw; node_class->tail_vector = ganv_port_tail_vector; -- cgit v1.2.1