Changeset 9722 in ntrip for trunk/BNC/src
- Timestamp:
- May 18, 2022, 11:02:16 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncnetqueryv2.cpp
r9721 r9722 154 154 // --------------- 155 155 connect(_reply, SIGNAL(finished()), this, SLOT(slotFinished())); 156 connect(_reply, SIGNAL(finished()), _eventLoop, SLOT( terminate()));156 connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(quit())); 157 157 connect(_reply, SIGNAL(sslErrors(QList<QSslError>)),this, SLOT(slotSslErrors(QList<QSslError>))); 158 158 if (!full) { 159 connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT( terminate()));159 connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT(quit())); 160 160 } 161 161 } … … 224 224 } 225 225 226 QListIterator<QSslError> it(errors); 226 QListIterator<QSslError> it(errors); std::cout << "errors.size(): " << errors.size() << std::endl; 227 227 while (it.hasNext()) { 228 228 const QSslError& err = it.next();
Note:
See TracChangeset
for help on using the changeset viewer.