Formatting

This commit is contained in:
Jonas Kvinge
2021-02-02 21:08:58 +01:00
parent 59b48ceb4a
commit 03959a68d5
68 changed files with 50 additions and 99 deletions

View File

@@ -100,4 +100,3 @@ void AlbumCoverExport::ForceSizeToggled(int state) {
ui_->width->setEnabled(state == Qt::Checked);
ui_->height->setEnabled(state == Qt::Checked);
}

View File

@@ -154,4 +154,3 @@ void AlbumCoverFetcher::SingleCoverFetched(const quint64 request_id, const QUrl
emit AlbumCoverFetched(request_id, cover_url, image, search->statistics());
}

View File

@@ -144,4 +144,3 @@ class AlbumCoverLoader : public QObject {
};
#endif // ALBUMCOVERLOADER_H

View File

@@ -53,7 +53,7 @@ class AlbumCoverManagerList : public QListWidget {
void dropEvent(QDropEvent *event) override;
private:
AlbumCoverManager* manager_;
AlbumCoverManager *manager_;
};
#endif // ALBUMCOVERMANAGERLIST_H

View File

@@ -285,4 +285,3 @@ void AlbumCoverSearcher::keyPressEvent(QKeyEvent *e) {
void AlbumCoverSearcher::CoverDoubleClicked(const QModelIndex &idx) {
if (idx.isValid()) accept();
}

View File

@@ -199,4 +199,3 @@ void CoverExportRunnable::ExportCover() {
void CoverExportRunnable::EmitCoverExported() { emit CoverExported(); }
void CoverExportRunnable::EmitCoverSkipped() { emit CoverSkipped(); }

View File

@@ -101,4 +101,3 @@ void CoverFromURLDialog::LoadCoverFromURLFinished() {
}
}

View File

@@ -64,4 +64,3 @@ QString CoverSearchStatistics::AverageDimensions() const {
return QString::number(chosen_width_ / chosen_images_) + "x" + QString::number(chosen_height_ / chosen_images_);
}