chore: reformat

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu
2023-08-02 18:35:35 +02:00
parent ce2ca13815
commit 1d468ac35a
594 changed files with 16040 additions and 16536 deletions

View File

@ -2,25 +2,22 @@
#include <Application.h>
#include <translations/TranslationsModel.h>
#include "ui/widgets/LanguageSelectionWidget.h"
#include <QVBoxLayout>
#include <BuildConfig.h>
#include <QVBoxLayout>
#include "ui/widgets/LanguageSelectionWidget.h"
LanguageWizardPage::LanguageWizardPage(QWidget *parent)
: BaseWizardPage(parent)
LanguageWizardPage::LanguageWizardPage(QWidget* parent) : BaseWizardPage(parent)
{
setObjectName(QStringLiteral("languagePage"));
auto layout = new QVBoxLayout(this);
mainWidget = new LanguageSelectionWidget(this);
layout->setContentsMargins(0,0,0,0);
layout->setContentsMargins(0, 0, 0, 0);
layout->addWidget(mainWidget);
retranslate();
}
LanguageWizardPage::~LanguageWizardPage()
{
}
LanguageWizardPage::~LanguageWizardPage() {}
bool LanguageWizardPage::wantsRefreshButton()
{