VirtualBox

Changeset 58247 in vbox for trunk/src


Ignore:
Timestamp:
Oct 14, 2015 2:53:02 PM (9 years ago)
Author:
vboxsync
Message:

FE/Qt: Networking cleanup/rework (part 9): Build fix for r103414.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkReply.cpp

    r58245 r58247  
    5959#ifndef VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS
    6060    Q_OBJECT;
    61 #endif
    6261
    6362signals:
     
    6766      * @param iTotal   holds the total amount of bytes to be downloaded. */
    6867    void sigDownloadProgress(qint64 iCurrent, qint64 iTotal);
     68#endif /* !VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS */
    6969
    7070public:
     
    828828void UINetworkReplyPrivateThread::handleProgressChange(uint64_t cbDownloadTotal, uint64_t cbDownloaded)
    829829{
     830#ifndef VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS
    830831    /* Notify listeners about progress change: */
    831832    emit sigDownloadProgress(cbDownloaded, cbDownloadTotal);
     833#endif /* !VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS */
    832834}
    833835
     
    858860        /* Create and run network-reply thread: */
    859861        m_pThread = new UINetworkReplyPrivateThread(request, type);
     862#ifndef VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS
    860863        connect(m_pThread, SIGNAL(sigDownloadProgress(qint64, qint64)),
    861864                this, SIGNAL(downloadProgress(qint64, qint64)), Qt::QueuedConnection);
     865#endif /* !VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS */
    862866        connect(m_pThread, SIGNAL(finished()), this, SLOT(sltFinished()));
    863867        m_pThread->start();
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette