Skip to content

Commit

Permalink
-Disable submodel names for metamodel connection dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
alash325 committed Mar 18, 2016
1 parent ecb8eb5 commit d1a01aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OMEdit/OMEditGUI/Component/ComponentProperties.cpp
Expand Up @@ -1383,13 +1383,13 @@ void TLMConnectionAttributes::setUpDialog()
// Create the start component class name label and text box
mpStartSubModelNameLabel = new Label(tr("From:"));
mpStartSubModelNameTextBox = new QLineEdit;
mpStartSubModelNameTextBox->setReadOnly(true);
mpStartSubModelNameTextBox->setDisabled(true);
// Create the start component interface points combo box
mpStartSubModelInterfacePointComboBox = new QComboBox;
// Create the end component class name label and text box
mpEndSubModelNameLabel = new Label(tr("To:"));
mpEndSubModelNameTextBox = new QLineEdit;
mpEndSubModelNameTextBox->setReadOnly(true);
mpEndSubModelNameTextBox->setDisabled(true);
// Create the end component interface points combo box
mpEndSubModelInterfacePointComboBox = new QComboBox;
// Create the delay label and text box
Expand Down

0 comments on commit d1a01aa

Please sign in to comment.