Changeset 8127 in ntrip for trunk/BNC/src/bnctabledlg.cpp
- Timestamp:
- May 10, 2017, 3:20:54 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnctabledlg.cpp
r7680 r8127 40 40 41 41 #include <iostream> 42 #include <QHeaderView> 43 #include <QLabel> 44 #include <QLineEdit> 45 #include <QMessageBox> 46 #include <QVBoxLayout> 42 47 43 48 #include "bnctabledlg.h" … … 492 497 if (url.host() == newHost) { 493 498 _casterUserLineEdit->setText( 494 QUrl::fromPercentEncoding(url.userName().to Ascii()));499 QUrl::fromPercentEncoding(url.userName().toLatin1())); 495 500 _casterPasswordLineEdit->setText( 496 QUrl::fromPercentEncoding(url.password().to Ascii()));501 QUrl::fromPercentEncoding(url.password().toLatin1())); 497 502 if (url.port() > 0) { 498 503 _casterPortLineEdit->setText(QString("%1").arg(url.port()));
Note:
See TracChangeset
for help on using the changeset viewer.