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:
parent
7a893cc8da
commit
2e72d8d3e5
@ -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) {
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user