1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-16 19:31:02 +01:00

Code review comments from r3355

This commit is contained in:
John Maguire 2011-06-01 15:47:14 +00:00
parent 7a893cc8da
commit 2e72d8d3e5
2 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,8 @@ using boost::scoped_ptr;
LibraryResolver::LibraryResolver(LibraryBackendInterface* backend, QObject* parent)
: Resolver(parent),
backend_(backend) {
backend_(backend),
next_id_(0) {
}
int LibraryResolver::ResolveSong(const Song& song) {

View File

@ -17,7 +17,7 @@ class LibraryResolver : public Resolver {
int ResolveSong(const Song& song);
signals:
void ResolveFinished(int id, SongList songs);
void ResolveFinished(int id, const SongList& songs);
private slots:
void QueryFinished();