Index: trunk/BNC/bncnetrequest.cpp
===================================================================
--- trunk/BNC/bncnetrequest.cpp	(revision 1341)
+++ trunk/BNC/bncnetrequest.cpp	(revision 1342)
@@ -69,5 +69,6 @@
   connect(_reply, SIGNAL(error(QNetworkReply::NetworkError)),
           this, SLOT(slotError(QNetworkReply::NetworkError)));
-  ///  connect(_reply, SIGNAL(sslErrors()), this, SLOT(slotSslErrors()));
+  connect(_reply, SIGNAL(sslErrors(const QList<QSslError>&)), 
+          this, SLOT(slotSslErrors(const QList<QSslError>&)));
 
 
@@ -87,5 +88,5 @@
   cout << "slotReadyRead" << endl;
   QByteArray buffer = _reply->readAll();
-  cout << buffer.data();
+  cerr << buffer.data();
 }
 
@@ -99,5 +100,5 @@
 // 
 ////////////////////////////////////////////////////////////////////////////
-void bncNetRequest::slotSslErrors() {
+void bncNetRequest::slotSslErrors(const QList<QSslError>&) {
   cout << "slotSslError" << endl;
 }
Index: trunk/BNC/bncnetrequest.h
===================================================================
--- trunk/BNC/bncnetrequest.h	(revision 1341)
+++ trunk/BNC/bncnetrequest.h	(revision 1342)
@@ -19,5 +19,5 @@
   void slotReadyRead();
   void slotError(QNetworkReply::NetworkError);
-  void slotSslErrors();
+  void slotSslErrors(const QList<QSslError>&);
 
  private:
Index: trunk/BNC/ntrip2test.cpp
===================================================================
--- trunk/BNC/ntrip2test.cpp	(revision 1341)
+++ trunk/BNC/ntrip2test.cpp	(revision 1342)
@@ -13,7 +13,7 @@
 
 
-  bncNetRequest* req1 = new bncNetRequest();
-  QUrl url1("http://euref-ip.bkg.bund.de:2111/");
-  req1->request(url1);
+//  bncNetRequest* req1 = new bncNetRequest();
+//  QUrl url1("http://euref-ip.bkg.bund.de:2111/");
+//  req1->request(url1);
 
   bncNetRequest* req2 = new bncNetRequest();
