Trk: Renamed handleFileCreated() to handleFileCopied() to make clear.

This commit is contained in:
Robert Loehning
2009-09-30 18:24:22 +02:00
parent 07d05f3390
commit 06bba1dc78
2 changed files with 3 additions and 3 deletions

View File

@@ -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();

View File

@@ -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);