summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@nokia.com>2009-09-30 18:24:22 +0200
committerRobert Loehning <robert.loehning@nokia.com>2009-09-30 18:24:22 +0200
commit06bba1dc780533bac37fe2a19970faf3cfb3efab (patch)
tree8db24404a21956d8dca99328d6d3261a1870ad1c /src
parent07d05f3390f95f5d320039e647ebace40b437895 (diff)
downloadqt-creator-06bba1dc780533bac37fe2a19970faf3cfb3efab.tar.gz
Trk: Renamed handleFileCreated() to handleFileCopied() to make clear.
Diffstat (limited to 'src')
-rw-r--r--src/shared/trk/launcher.cpp4
-rw-r--r--src/shared/trk/launcher.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/trk/launcher.cpp b/src/shared/trk/launcher.cpp
index 36272bf143..70c8ba9565 100644
--- a/src/shared/trk/launcher.cpp
+++ b/src/shared/trk/launcher.cpp
@@ -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();
diff --git a/src/shared/trk/launcher.h b/src/shared/trk/launcher.h
index 01c83ff790..ec1048885c 100644
--- a/src/shared/trk/launcher.h
+++ b/src/shared/trk/launcher.h
@@ -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);