- Timestamp:
- Jul 9, 2021 1:04:54 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145626
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIUserNamePasswordEditor.cpp
r90107 r90124 376 376 connect(m_pPasswordLineEdit, &UIPasswordLineEdit::textChanged, 377 377 this, &UIUserNamePasswordEditor::sltPasswordChanged); 378 connect(m_pPasswordRepeatLineEdit, &UIPasswordLineEdit::textChanged, 379 this, &UIUserNamePasswordEditor::sltPasswordChanged); 378 380 connect(m_pUserNameLineEdit, &QILineEdit::textChanged, 379 381 this, &UIUserNamePasswordEditor::sltUserNameChanged); … … 396 398 void UIUserNamePasswordEditor::sltUserNameChanged() 397 399 { 398 i f (isUserNameComplete())399 400 isUserNameComplete(); 401 emit sigUserNameChanged(m_pUserNameLineEdit->text()); 400 402 } 401 403 402 404 void UIUserNamePasswordEditor::sltPasswordChanged() 403 405 { 404 i f (isPasswordComplete())405 406 isPasswordComplete(); 407 emit sigPasswordChanged(m_pPasswordLineEdit->text()); 406 408 } 407 409
Note:
See TracChangeset
for help on using the changeset viewer.