tags 537007 +patch
thanks
patch is attatched, just add it to the quilt series.
Index: hildon-thumbnail-3.0.23~svn18048/albumart-providers/googleimages/google-images-art-downloader.vala
===================================================================
--- hildon-thumbnail-3.0.23~svn18048.orig/albumart-providers/googleimages/google-images-art-downloader.vala 2009-10-14 18:41:08.000000000 +0000
+++ hildon-thumbnail-3.0.23~svn18048/albumart-providers/googleimages/google-images-art-downloader.vala 2009-10-14 18:45:12.000000000 +0000
@@ -4,7 +4,7 @@
[DBus (name = "com.nokia.albumart.Provider")]
public interface Provider {
- public abstract void Fetch (string artist, string album, string kind);
+ public abstract void Fetch (string artist, string album, string kind) throws DBus.Error;
}
// Sample implementation of com.nokia.albumart.Provider that uses Google
@@ -15,7 +15,8 @@
public class GoogleImages : Object, Provider {
public void Fetch (string artist, string album, string kind) {
- uint u = 0, hread = 0;
+ uint u = 0;
+ size_t hread = 0;
string [] pieces = artist.split (" ", -1);
string stitched = "";
bool first = true;