StartWB: Make all file headers uniform and trim whitespace [skip-ci]

[skip ci]
This commit is contained in:
luz paz
2020-11-03 12:35:07 -05:00
committed by wwmayer
parent ae48d4afb2
commit 4568effc2b
18 changed files with 32 additions and 34 deletions

View File

@@ -39,14 +39,14 @@ DlgStartPreferencesImp::DlgStartPreferencesImp( QWidget* parent )
, ui(new Ui_DlgStartPreferences)
{
ui->setupUi(this);
// Hide currently unused controls
ui->label_12->hide();
ui->label_7->hide();
ui->colorButton_7->hide();
ui->radioButton_1->hide();
ui->radioButton_2->hide();
// fills the combo box with all available workbenches
// sorted by their menu text
QStringList work = Gui::Application::Instance->workbenches();
@@ -73,10 +73,10 @@ DlgStartPreferencesImp::DlgStartPreferencesImp( QWidget* parent )
else
ui->AutoloadModuleCombo->addItem(px, it.key(), QVariant(it.value()));
}
}
/**
/**
* Destroys the object and frees any allocated resources
*/
DlgStartPreferencesImp::~DlgStartPreferencesImp()