Changeset 9722 in ntrip for trunk/BNC/src/bncnetqueryv2.cpp


Ignore:
Timestamp:
May 18, 2022, 11:02:16 AM (2 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncnetqueryv2.cpp

    r9721 r9722  
    154154  // ---------------
    155155  connect(_reply, SIGNAL(finished()), this, SLOT(slotFinished()));
    156   connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(terminate()));
     156  connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(quit()));
    157157  connect(_reply, SIGNAL(sslErrors(QList<QSslError>)),this, SLOT(slotSslErrors(QList<QSslError>)));
    158158  if (!full) {
    159     connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT(terminate()));
     159    connect(_reply, SIGNAL(readyRead()), _eventLoop, SLOT(quit()));
    160160  }
    161161}
     
    224224  }
    225225
    226   QListIterator<QSslError> it(errors);
     226  QListIterator<QSslError> it(errors); std::cout << "errors.size(): "  << errors.size() << std::endl;
    227227  while (it.hasNext()) {
    228228    const QSslError& err = it.next();
Note: See TracChangeset for help on using the changeset viewer.