コード例 #1
0
ファイル: maemosshthread.cpp プロジェクト: gidlbn/dlbn_02
bool MaemoSshDeployer::runInternal()
{
    createConnection();
    if (!m_connection->start())
        return false;
    if (stopRequested())
        return true;

    connect(m_connection.data(), SIGNAL(fileCopied(QString)),
            this, SIGNAL(fileCopied(QString)));
    return m_connection->transferFiles(m_deploySpecs);
}
コード例 #2
0
ファイル: copy.cpp プロジェクト: ClementFan/qt-google-drive
void Copy::slotPostFinished(QNetworkReply *reply)
{
 //   NetworkManager::slotPostFinished(reply);

    if(sourcesData.isEmpty())
    {
        emit fileCopied(sourceData, true);
        updatePanelContent(true);
    }
    else
    {
        emit fileCopied(sourceData);
        file(sourcesData.takeFirst(), destFolder);
    }
}