Skip to content

Commit

Permalink
Make static as default linkage instead of dynamic.
Browse files Browse the repository at this point in the history
  • Loading branch information
adeas31 committed Mar 21, 2016
1 parent c2f86a4 commit 4bcfe5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMEdit/OMEditGUI/Options/OptionsDialog.cpp
Expand Up @@ -3533,7 +3533,7 @@ FMIPage::FMIPage(OptionsDialog *pOptionsDialog)
mpLinkingComboBox->addItem(tr("None"), "none");
mpLinkingComboBox->addItem(tr("Dynamic"), "dynamic");
mpLinkingComboBox->addItem(tr("Static"), "static");
mpLinkingComboBox->setCurrentIndex(1);
mpLinkingComboBox->setCurrentIndex(2);
// set the type groupbox layout
QVBoxLayout *pPlatformsLayout = new QVBoxLayout;
pPlatformsLayout->setAlignment(Qt::AlignTop | Qt::AlignLeft);
Expand Down

0 comments on commit 4bcfe5e

Please sign in to comment.