summaryrefslogtreecommitdiffstats
path: root/bindings
diff options
context:
space:
mode:
authorTodd Zullinger <tmzullinger@users.sourceforge.net>2008-07-17 16:10:33 +0000
committerTodd Zullinger <tmzullinger@users.sourceforge.net>2008-07-17 16:10:33 +0000
commiteda4fe948eebbf54077ea7f9f67b610a08b6d2b1 (patch)
treec8a411d167cd0deef20117d0c824b28e93836bcc /bindings
parent4fe91529b7733a1e11b71a9a2a440a9c9c38e6b9 (diff)
downloadlibgpod-tmz-eda4fe948eebbf54077ea7f9f67b610a08b6d2b1.tar.gz
libgpod-tmz-eda4fe948eebbf54077ea7f9f67b610a08b6d2b1.tar.xz
libgpod-tmz-eda4fe948eebbf54077ea7f9f67b610a08b6d2b1.zip
Remove references to itdb_thumb_get_gdk_pixbuf()
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@2050 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'bindings')
-rw-r--r--bindings/python/gpod.i.in2
-rw-r--r--bindings/python/ipod.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/bindings/python/gpod.i.in b/bindings/python/gpod.i.in
index e74d3d9..4ac7e20 100644
--- a/bindings/python/gpod.i.in
+++ b/bindings/python/gpod.i.in
@@ -487,7 +487,7 @@ typedef int gint;
#ifdef HAVE_GDKPIXBUF
#ifdef HAVE_PYGOBJECT
-%typemap(out) gpointer itdb_thumb_get_gdk_pixbuf {
+%typemap(out) gpointer itdb_artwork_get_pixbuf {
$result = pygobject_new((GObject *)$1);
g_object_unref($1);
}
diff --git a/bindings/python/ipod.py b/bindings/python/ipod.py
index 053eda6..e5440d2 100644
--- a/bindings/python/ipod.py
+++ b/bindings/python/ipod.py
@@ -1023,10 +1023,10 @@ class Thumbnail:
def get_pixbuf(self):
# this deals with coverart and photo albums
if hasattr(self.__ownerobject._database,"_itdb"):
- return gpod.itdb_thumb_get_gdk_pixbuf(
+ return gpod.itdb_artwork_get_pixbuf(
self.__ownerobject._database._itdb.device,
self._thumbnail)
else:
- return gpod.itdb_thumb_get_gdk_pixbuf(
+ return gpod.itdb_artwork_get_pixbuf(
self.__ownerobject._database.device,
self._thumbnail)