Formatting
This commit is contained in:
@@ -100,4 +100,3 @@ void AlbumCoverExport::ForceSizeToggled(int state) {
|
||||
ui_->width->setEnabled(state == Qt::Checked);
|
||||
ui_->height->setEnabled(state == Qt::Checked);
|
||||
}
|
||||
|
||||
|
||||
@@ -154,4 +154,3 @@ void AlbumCoverFetcher::SingleCoverFetched(const quint64 request_id, const QUrl
|
||||
emit AlbumCoverFetched(request_id, cover_url, image, search->statistics());
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -144,4 +144,3 @@ class AlbumCoverLoader : public QObject {
|
||||
};
|
||||
|
||||
#endif // ALBUMCOVERLOADER_H
|
||||
|
||||
|
||||
@@ -53,7 +53,7 @@ class AlbumCoverManagerList : public QListWidget {
|
||||
void dropEvent(QDropEvent *event) override;
|
||||
|
||||
private:
|
||||
AlbumCoverManager* manager_;
|
||||
AlbumCoverManager *manager_;
|
||||
};
|
||||
|
||||
#endif // ALBUMCOVERMANAGERLIST_H
|
||||
|
||||
@@ -285,4 +285,3 @@ void AlbumCoverSearcher::keyPressEvent(QKeyEvent *e) {
|
||||
void AlbumCoverSearcher::CoverDoubleClicked(const QModelIndex &idx) {
|
||||
if (idx.isValid()) accept();
|
||||
}
|
||||
|
||||
|
||||
@@ -199,4 +199,3 @@ void CoverExportRunnable::ExportCover() {
|
||||
void CoverExportRunnable::EmitCoverExported() { emit CoverExported(); }
|
||||
|
||||
void CoverExportRunnable::EmitCoverSkipped() { emit CoverSkipped(); }
|
||||
|
||||
|
||||
@@ -101,4 +101,3 @@ void CoverFromURLDialog::LoadCoverFromURLFinished() {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -64,4 +64,3 @@ QString CoverSearchStatistics::AverageDimensions() const {
|
||||
return QString::number(chosen_width_ / chosen_images_) + "x" + QString::number(chosen_height_ / chosen_images_);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user