summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTodd Zullinger <tmzullinger@users.sourceforge.net>2007-05-12 20:01:11 +0000
committerTodd Zullinger <tmzullinger@users.sourceforge.net>2007-05-12 20:01:11 +0000
commitcdb0a8023d796f59960b6f810e91fb8100bba2a2 (patch)
tree5dcf04106c1e2ea9cffb062589813b4c8b6e0fd5
parentf37c3a59dfad598ce3e3bcb31735c7a866629837 (diff)
downloadlibgpod-cdb0a8023d796f59960b6f810e91fb8100bba2a2.tar.gz
libgpod-cdb0a8023d796f59960b6f810e91fb8100bba2a2.tar.xz
libgpod-cdb0a8023d796f59960b6f810e91fb8100bba2a2.zip
treat time_t as int
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1431 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r--ChangeLog4
-rw-r--r--bindings/python/gpod.i.in2
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 083de20..416c471 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2007-05-12 Todd Zullinger <tmzullinger at users.sourceforge.net>
+ * bindings/python/gpod.i.in: treat time_t as int
+
+2007-05-12 Todd Zullinger <tmzullinger at users.sourceforge.net>
+
* docs/reference/Makefile.am
docs/reference/libgpod-sections.txt
docs/reference/tmpl/device.sgml
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;