[libchamplain] Remove the semicolon in XS declarations



commit 9cce2c87b6a9f95c4d605b95f8ff6493b847745b
Author: Emmanuel Rodriguez <emmanuel rodriguez gmail com>
Date:   Wed Jul 29 22:02:48 2009 +0200

    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)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]