Remove unused variables

This commit is contained in:
Jonas Kvinge 2023-09-23 23:55:49 +02:00
parent 01ddded603
commit 0ef50e1b6d
2 changed files with 0 additions and 4 deletions

View File

@ -1862,7 +1862,6 @@ void MainWindow::PlaylistRightClick(const QPoint global_pos, const QModelIndex &
int in_skipped = 0;
int not_in_skipped = 0;
int local_songs = 0;
int collection_songs = 0;
for (const QModelIndex &idx : selection) {
@ -1873,7 +1872,6 @@ void MainWindow::PlaylistRightClick(const QPoint global_pos, const QModelIndex &
if (!item) continue;
if (item->Metadata().url().isLocalFile()) ++local_songs;
if (item->Metadata().source() == Song::Source::Collection) ++collection_songs;
if (item->Metadata().has_cue()) {
cue_selected = true;

View File

@ -433,7 +433,6 @@ void SubsonicRequest::AlbumSongsReplyReceived(QNetworkReply *reply, const QStrin
bool compilation = false;
bool multidisc = false;
SongList songs;
int songs_received = 0;
for (const QJsonValueRef value_song : array_songs) {
if (!value_song.isObject()) {
@ -442,7 +441,6 @@ void SubsonicRequest::AlbumSongsReplyReceived(QNetworkReply *reply, const QStrin
}
QJsonObject obj_song = value_song.toObject();
++songs_received;
Song song(Song::Source::Subsonic);
ParseSong(song, obj_song, artist_id, album_id, album_artist, created);
if (!song.is_valid()) continue;