[perl-Champlain] Remove the bindings for Champlain::Tile::get_modified_time_stirng



commit c9194c207537d4d91ea09a2a02aa3b4dcfc84e66
Author: Emmanuel Rodriguez <emmanuel rodriguez gmail com>
Date:   Tue May 18 21:35:54 2010 +0200

    Remove the bindings for Champlain::Tile::get_modified_time_stirng
    
    The function is no longer in the C library.

 t/ChamplainTile.t   |   17 +----------------
 xs/ChamplainTile.xs |    4 ----
 2 files changed, 1 insertions(+), 20 deletions(-)
---
diff --git a/t/ChamplainTile.t b/t/ChamplainTile.t
index d3fb876..e1cab73 100644
--- a/t/ChamplainTile.t
+++ b/t/ChamplainTile.t
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Clutter::TestHelper tests => 50;
+use Clutter::TestHelper tests => 46;
 
 use Champlain ':coords';
 use Data::Dumper;
@@ -34,11 +34,6 @@ sub test_new_full {
 		[undef, undef],
 		"get_modified_time() full tile"
 	);
-	is(
-		$tile->get_modified_time_string,
-		undef,
-		"get_modified_time_stirng"
-	);
 
 	test_all_setters($tile);
 }
@@ -60,12 +55,6 @@ sub test_new_empty {
 		[undef, undef],
 		"get_modified_time() full tile"
 	);
-	is(
-		$tile->get_modified_time_string,
-		undef,
-		"get_modified_time_stirng"
-	);
-
 	
 	test_all_setters($tile);
 }
@@ -102,10 +91,6 @@ sub test_all_setters {
 	is(scalar(@time), 2, "Got seconds and microseconds");
 	ok(defined $time[0], "Seconds are defined");
 	ok(defined $time[1], "Microseconds are defined");
-	ok(
-		$tile->get_modified_time_string,
-		"get_modified_time_stirng"
-	);
 
 	
 	# The epoch
diff --git a/xs/ChamplainTile.xs b/xs/ChamplainTile.xs
index 0cafe67..0c23a26 100644
--- a/xs/ChamplainTile.xs
+++ b/xs/ChamplainTile.xs
@@ -123,10 +123,6 @@ champlain_tile_set_modified_time (ChamplainTile *self, ...)
 		champlain_tile_set_modified_time(self, &modified_time);
 
 
-gchar*
-champlain_tile_get_modified_time_string (ChamplainTile *self)
-
-
 void
 champlain_tile_set_fade_in (ChamplainTile *self, gboolean fade_in)
 



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