Index: /trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkReply.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkReply.cpp	(revision 58246)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkReply.cpp	(revision 58247)
@@ -59,5 +59,4 @@
 #ifndef VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS
     Q_OBJECT;
-#endif
 
 signals:
@@ -67,4 +66,5 @@
       * @param iTotal   holds the total amount of bytes to be downloaded. */
     void sigDownloadProgress(qint64 iCurrent, qint64 iTotal);
+#endif /* !VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS */
 
 public:
@@ -828,6 +828,8 @@
 void UINetworkReplyPrivateThread::handleProgressChange(uint64_t cbDownloadTotal, uint64_t cbDownloaded)
 {
+#ifndef VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS
     /* Notify listeners about progress change: */
     emit sigDownloadProgress(cbDownloaded, cbDownloadTotal);
+#endif /* !VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS */
 }
 
@@ -858,6 +860,8 @@
         /* Create and run network-reply thread: */
         m_pThread = new UINetworkReplyPrivateThread(request, type);
+#ifndef VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS
         connect(m_pThread, SIGNAL(sigDownloadProgress(qint64, qint64)),
                 this, SIGNAL(downloadProgress(qint64, qint64)), Qt::QueuedConnection);
+#endif /* !VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS */
         connect(m_pThread, SIGNAL(finished()), this, SLOT(sltFinished()));
         m_pThread->start();
