mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-14 10:24:19 +01:00
Run make format.
This commit is contained in:
parent
82dcdd3a12
commit
aaf2ec25b3
@ -249,7 +249,8 @@ void GlobalSearchModel::GetChildResults(
|
||||
if (is_provider) {
|
||||
// Go through all the items (through the proxy to keep them ordered) and
|
||||
// add the ones belonging to this provider to our list
|
||||
for (int i = 0; i < proxy_->rowCount(invisibleRootItem()->index()); ++i) {
|
||||
for (int i = 0; i < proxy_->rowCount(invisibleRootItem()->index());
|
||||
++i) {
|
||||
QModelIndex child_index =
|
||||
proxy_->index(i, 0, invisibleRootItem()->index());
|
||||
const QStandardItem* child_item =
|
||||
|
@ -919,7 +919,8 @@ LibraryItem* LibraryModel::ItemFromQuery(GroupBy type, bool signal,
|
||||
item->metadata.set_album(row.value(1).toString());
|
||||
item->metadata.set_grouping(row.value(2).toString());
|
||||
item->key = PrettyYearAlbum(year, item->metadata.album());
|
||||
item->sort_text = SortTextForNumber(year) + item->metadata.grouping() + item->metadata.album();
|
||||
item->sort_text = SortTextForNumber(year) + item->metadata.grouping() +
|
||||
item->metadata.album();
|
||||
break;
|
||||
|
||||
case GroupBy_Year:
|
||||
|
Loading…
Reference in New Issue
Block a user