Formatting
This commit is contained in:
@@ -36,7 +36,9 @@
|
||||
|
||||
#include "deleteconfirmationdialog.h"
|
||||
|
||||
DeleteConfirmationDialog::DeleteConfirmationDialog(const QStringList &files, QWidget *parent) : QDialog(parent, Qt::Dialog | Qt::WindowTitleHint | Qt::CustomizeWindowHint | Qt::WindowCloseButtonHint), button_box_(new QDialogButtonBox(this)) {
|
||||
DeleteConfirmationDialog::DeleteConfirmationDialog(const QStringList &files, QWidget *parent)
|
||||
: QDialog(parent, Qt::Dialog | Qt::WindowTitleHint | Qt::CustomizeWindowHint | Qt::WindowCloseButtonHint),
|
||||
button_box_(new QDialogButtonBox(this)) {
|
||||
|
||||
setModal(true);
|
||||
setWindowTitle(tr("Delete files"));
|
||||
|
||||
@@ -116,8 +116,7 @@ EditTagDialog::EditTagDialog(Application *app, QWidget *parent)
|
||||
tags_cover_art_id_(-1),
|
||||
cover_art_is_set_(false),
|
||||
save_tag_pending_(0),
|
||||
save_art_pending_(0)
|
||||
{
|
||||
save_art_pending_(0) {
|
||||
|
||||
QObject::connect(app_->album_cover_loader(), &AlbumCoverLoader::AlbumCoverLoaded, this, &EditTagDialog::AlbumCoverLoaded);
|
||||
|
||||
|
||||
@@ -35,9 +35,8 @@
|
||||
class QHideEvent;
|
||||
|
||||
ErrorDialog::ErrorDialog(QWidget *parent)
|
||||
: QDialog(parent),
|
||||
ui_(new Ui_ErrorDialog)
|
||||
{
|
||||
: QDialog(parent),
|
||||
ui_(new Ui_ErrorDialog) {
|
||||
|
||||
ui_->setupUi(this);
|
||||
|
||||
|
||||
@@ -30,12 +30,13 @@
|
||||
#include "core/iconloader.h"
|
||||
#include "scrobbler/lastfmimport.h"
|
||||
|
||||
LastFMImportDialog::LastFMImportDialog(LastFMImport *lastfm_import, QWidget *parent) : QDialog(parent),
|
||||
ui_(new Ui_LastFMImportDialog),
|
||||
lastfm_import_(lastfm_import),
|
||||
finished_(false),
|
||||
playcount_total_(0),
|
||||
lastplayed_total_(0) {
|
||||
LastFMImportDialog::LastFMImportDialog(LastFMImport *lastfm_import, QWidget *parent)
|
||||
: QDialog(parent),
|
||||
ui_(new Ui_LastFMImportDialog),
|
||||
lastfm_import_(lastfm_import),
|
||||
finished_(false),
|
||||
playcount_total_(0),
|
||||
lastplayed_total_(0) {
|
||||
|
||||
ui_->setupUi(this);
|
||||
|
||||
|
||||
@@ -55,9 +55,9 @@
|
||||
#include "ui_trackselectiondialog.h"
|
||||
|
||||
TrackSelectionDialog::TrackSelectionDialog(QWidget *parent)
|
||||
: QDialog(parent),
|
||||
ui_(new Ui_TrackSelectionDialog),
|
||||
save_on_close_(false) {
|
||||
: QDialog(parent),
|
||||
ui_(new Ui_TrackSelectionDialog),
|
||||
save_on_close_(false) {
|
||||
|
||||
// Setup dialog window
|
||||
ui_->setupUi(this);
|
||||
|
||||
Reference in New Issue
Block a user