Skip to content
Snippets Groups Projects
Commit 06bba1dc authored by Robert Loehning's avatar Robert Loehning
Browse files

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

parent 07d05f33
No related branches found
No related tags found
No related merge requests found
...@@ -343,12 +343,12 @@ void Launcher::continueCopying() ...@@ -343,12 +343,12 @@ void Launcher::continueCopying()
QByteArray ba; QByteArray ba;
appendInt(&ba, d->m_copyState.copyFileHandle, TargetByteOrder); appendInt(&ba, d->m_copyState.copyFileHandle, TargetByteOrder);
appendInt(&ba, QDateTime::currentDateTime().toTime_t(), 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(); d->m_copyState.data.reset();
} }
} }
void Launcher::handleFileCreated(const TrkResult &result) void Launcher::handleFileCopied(const TrkResult &result)
{ {
Q_UNUSED(result) Q_UNUSED(result)
installAndRun(); installAndRun();
......
...@@ -79,7 +79,7 @@ private: ...@@ -79,7 +79,7 @@ private:
void handleFileCreation(const TrkResult &result); void handleFileCreation(const TrkResult &result);
void handleCopy(const TrkResult &result); void handleCopy(const TrkResult &result);
void continueCopying(); void continueCopying();
void handleFileCreated(const TrkResult &result); void handleFileCopied(const TrkResult &result);
void handleInstallPackageFinished(const TrkResult &result); void handleInstallPackageFinished(const TrkResult &result);
void handleCpuType(const TrkResult &result); void handleCpuType(const TrkResult &result);
void handleCreateProcess(const TrkResult &result); void handleCreateProcess(const TrkResult &result);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment