forked from qt-creator/qt-creator
Trk: Renamed handleFileCreated() to handleFileCopied() to make clear.
This commit is contained in:
@@ -343,12 +343,12 @@ void Launcher::continueCopying()
|
||||
QByteArray ba;
|
||||
appendInt(&ba, d->m_copyState.copyFileHandle, TargetByteOrder);
|
||||
appendInt(&ba, QDateTime::currentDateTime().toTime_t(), TargetByteOrder);
|
||||
d->m_device.sendTrkMessage(TrkCloseFile, TrkCallback(this, &Launcher::handleFileCreated), ba);
|
||||
d->m_device.sendTrkMessage(TrkCloseFile, TrkCallback(this, &Launcher::handleFileCopied), ba);
|
||||
d->m_copyState.data.reset();
|
||||
}
|
||||
}
|
||||
|
||||
void Launcher::handleFileCreated(const TrkResult &result)
|
||||
void Launcher::handleFileCopied(const TrkResult &result)
|
||||
{
|
||||
Q_UNUSED(result)
|
||||
installAndRun();
|
||||
|
||||
@@ -79,7 +79,7 @@ private:
|
||||
void handleFileCreation(const TrkResult &result);
|
||||
void handleCopy(const TrkResult &result);
|
||||
void continueCopying();
|
||||
void handleFileCreated(const TrkResult &result);
|
||||
void handleFileCopied(const TrkResult &result);
|
||||
void handleInstallPackageFinished(const TrkResult &result);
|
||||
void handleCpuType(const TrkResult &result);
|
||||
void handleCreateProcess(const TrkResult &result);
|
||||
|
||||
Reference in New Issue
Block a user