From 9cce2c87b6a9f95c4d605b95f8ff6493b847745b Mon Sep 17 00:00:00 2001 From: Emmanuel Rodriguez Date: Wed, 29 Jul 2009 22:02:48 +0200 Subject: [PATCH] Remove the semicolon in XS declarations --- bindings/perl/Champlain/xs/ChamplainBaseMarker.xs | 4 ++-- bindings/perl/Champlain/xs/ChamplainLayer.xs | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bindings/perl/Champlain/xs/ChamplainBaseMarker.xs b/bindings/perl/Champlain/xs/ChamplainBaseMarker.xs index afb760d..4230f6b 100644 --- a/bindings/perl/Champlain/xs/ChamplainBaseMarker.xs +++ b/bindings/perl/Champlain/xs/ChamplainBaseMarker.xs @@ -14,8 +14,8 @@ champlain_base_marker_set_position (ChamplainBaseMarker *marker, gdouble longitu void -champlain_base_marker_set_highlighted (ChamplainBaseMarker *champlainBaseMarker, gboolean value); +champlain_base_marker_set_highlighted (ChamplainBaseMarker *champlainBaseMarker, gboolean value) gboolean -champlain_base_marker_get_highlighted (ChamplainBaseMarker *champlainBaseMarker); +champlain_base_marker_get_highlighted (ChamplainBaseMarker *champlainBaseMarker) diff --git a/bindings/perl/Champlain/xs/ChamplainLayer.xs b/bindings/perl/Champlain/xs/ChamplainLayer.xs index 7872ebc..4f6915c 100644 --- a/bindings/perl/Champlain/xs/ChamplainLayer.xs +++ b/bindings/perl/Champlain/xs/ChamplainLayer.xs @@ -10,16 +10,16 @@ champlain_layer_new (class) void -champlain_layer_add_marker (ChamplainLayer *layer, ChamplainBaseMarker *marker); +champlain_layer_add_marker (ChamplainLayer *layer, ChamplainBaseMarker *marker) void -champlain_layer_hide (ChamplainLayer *layer); +champlain_layer_hide (ChamplainLayer *layer) void -champlain_layer_show (ChamplainLayer *layer); +champlain_layer_show (ChamplainLayer *layer) void -champlain_layer_remove_marker (ChamplainLayer *layer, ChamplainBaseMarker *marker); +champlain_layer_remove_marker (ChamplainLayer *layer, ChamplainBaseMarker *marker) -- 2.39.5