Changeset 104534 in vbox
- Timestamp:
- May 7, 2024 3:20:21 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 163066
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIHostnameDomainNameEditor.cpp
r103950 r104534 169 169 int iRow = 0; 170 170 addLineEdit<UIMarkableLineEdit>(iRow, m_pHostnameLabel, m_pHostnameLineEdit, m_pMainLayout); 171 addLineEdit< QILineEdit>(iRow, m_pDomainNameLabel, m_pDomainNameLineEdit, m_pMainLayout);171 addLineEdit<UIMarkableLineEdit>(iRow, m_pDomainNameLabel, m_pDomainNameLineEdit, m_pMainLayout); 172 172 173 173 /* Host name and domain should be strings of minimum length of 2 and composed of alpha numerics, '-', and '.' … … 178 178 connect(m_pHostnameLineEdit, &UIMarkableLineEdit::textChanged, 179 179 this, &UIHostnameDomainNameEditor::sltHostnameChanged); 180 connect(m_pDomainNameLineEdit, & QILineEdit::textChanged,180 connect(m_pDomainNameLineEdit, &UIMarkableLineEdit::textChanged, 181 181 this, &UIHostnameDomainNameEditor::sltDomainChanged); 182 182 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/editors/UIHostnameDomainNameEditor.h
r103950 r104534 83 83 84 84 UIMarkableLineEdit *m_pHostnameLineEdit; 85 QILineEdit*m_pDomainNameLineEdit;85 UIMarkableLineEdit *m_pDomainNameLineEdit; 86 86 87 87 QLabel *m_pHostnameLabel;
Note:
See TracChangeset
for help on using the changeset viewer.