Skip to content

Commit

Permalink
Fixes #3648. Fixed spelling mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
adeas31 committed Jan 28, 2016
1 parent 80346cc commit f1fe098
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions OMEdit/OMEditGUI/Options/OptionsDialog.cpp
Expand Up @@ -1263,10 +1263,10 @@ GeneralSettingsPage::GeneralSettingsPage(OptionsDialog *pOptionsDialog)
pDefaultViewRadioButtonsGridLayout->addWidget(mpTextViewRadioButton, 1, 0);
pDefaultViewRadioButtonsGridLayout->addWidget(mpDocumentationViewRadioButton, 1, 1);
// set the layout of default view group
QGridLayout *pDefautlViewLayout = new QGridLayout;
pDefautlViewLayout->setAlignment(Qt::AlignTop | Qt::AlignLeft);
pDefautlViewLayout->addLayout(pDefaultViewRadioButtonsGridLayout, 0, 0);
mpDefaultViewGroupBox->setLayout(pDefautlViewLayout);
QGridLayout *pDefaultViewLayout = new QGridLayout;
pDefaultViewLayout->setAlignment(Qt::AlignTop | Qt::AlignLeft);
pDefaultViewLayout->addLayout(pDefaultViewRadioButtonsGridLayout, 0, 0);
mpDefaultViewGroupBox->setLayout(pDefaultViewLayout);
// Auto Save
mpEnableAutoSaveGroupBox = new QGroupBox(tr("Enable Auto Save"));
mpEnableAutoSaveGroupBox->setToolTip("Auto save feature is experimental. If you encounter unexpected crashes then disable it.");
Expand Down

0 comments on commit f1fe098

Please sign in to comment.