Changeset 1405 in ntrip
- Timestamp:
- Dec 29, 2008, 3:15:47 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncnetqueryv2.cpp
r1404 r1405 23 23 bncNetQueryV2::bncNetQueryV2() { 24 24 _manager = new QNetworkAccessManager(this); 25 connect(_manager, SIGNAL(proxyAuthenticationRequired(const QNetworkProxy&, 26 QAuthenticator*)), 27 this, SLOT(slotProxyAuthenticationRequired(const QNetworkProxy&, 28 QAuthenticator*))); 25 29 _reply = 0; 26 30 _eventLoop = new QEventLoop(this); … … 62 66 _status = finished; 63 67 } 68 } 69 70 // 71 //////////////////////////////////////////////////////////////////////////// 72 void bncNetQueryV2::slotProxyAuthenticationRequired(const QNetworkProxy&, 73 QAuthenticator*) { 74 emit newMessage("slotProxyAuthenticationRequired", true); 64 75 } 65 76 -
trunk/BNC/bncnetqueryv2.h
r1391 r1405 19 19 void slotError(QNetworkReply::NetworkError); 20 20 void slotFinished(); 21 void slotProxyAuthenticationRequired(const QNetworkProxy&, QAuthenticator*); 21 22 22 23 private: -
trunk/BNC/bncwindow.cpp
r1352 r1405 618 618 settings.setValue("proxyHost", _proxyHostLineEdit->text()); 619 619 settings.setValue("proxyPort", _proxyPortLineEdit->text()); 620 settings.sync(); 620 621 } 621 622 } … … 783 784 _caster->slotReadMountPoints(); 784 785 } 786 settings.sync(); 785 787 } 786 788
Note:
See TracChangeset
for help on using the changeset viewer.