From 3c567930593ab6ec1fc7af4204c6d40f0fbf004b Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Sat, 12 May 2007 20:01:11 +0000 Subject: treat time_t as int git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1431 f01d2545-417e-4e96-918e-98f8d0dbbcb6 --- ChangeLog | 4 ++++ bindings/python/gpod.i.in | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 083de20..416c471 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-05-12 Todd Zullinger + + * bindings/python/gpod.i.in: treat time_t as int + 2007-05-12 Todd Zullinger * docs/reference/Makefile.am diff --git a/bindings/python/gpod.i.in b/bindings/python/gpod.i.in index e13d738..2d00e6c 100644 --- a/bindings/python/gpod.i.in +++ b/bindings/python/gpod.i.in @@ -308,6 +308,8 @@ PyObject* sw_get_photo(GList *list, gint index) { # them utf8 encoded Strings. typedef char gchar; +# treat time_t as int +typedef int time_t; %typemap(in) guint8 { unsigned long ival; -- cgit