Run make format.

This commit is contained in:
Mattias Andersson 2015-05-23 09:03:36 +02:00
parent 82dcdd3a12
commit aaf2ec25b3
2 changed files with 4 additions and 2 deletions

View File

@ -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 =

View File

@ -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: