- Timestamp:
- Oct 14, 2015 2:53:02 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkReply.cpp
r58245 r58247 59 59 #ifndef VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS 60 60 Q_OBJECT; 61 #endif62 61 63 62 signals: … … 67 66 * @param iTotal holds the total amount of bytes to be downloaded. */ 68 67 void sigDownloadProgress(qint64 iCurrent, qint64 iTotal); 68 #endif /* !VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS */ 69 69 70 70 public: … … 828 828 void UINetworkReplyPrivateThread::handleProgressChange(uint64_t cbDownloadTotal, uint64_t cbDownloaded) 829 829 { 830 #ifndef VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS 830 831 /* Notify listeners about progress change: */ 831 832 emit sigDownloadProgress(cbDownloaded, cbDownloadTotal); 833 #endif /* !VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS */ 832 834 } 833 835 … … 858 860 /* Create and run network-reply thread: */ 859 861 m_pThread = new UINetworkReplyPrivateThread(request, type); 862 #ifndef VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS 860 863 connect(m_pThread, SIGNAL(sigDownloadProgress(qint64, qint64)), 861 864 this, SIGNAL(downloadProgress(qint64, qint64)), Qt::QueuedConnection); 865 #endif /* !VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS */ 862 866 connect(m_pThread, SIGNAL(finished()), this, SLOT(sltFinished())); 863 867 m_pThread->start();
Note:
See TracChangeset
for help on using the changeset viewer.