summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/abstractpackagingstep.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2012-01-26 13:38:25 +0100
committerTobias Hunger <tobias.hunger@nokia.com>2012-01-30 11:34:43 +0100
commit97496df1bf889c69f686edf707ba71a226064067 (patch)
tree216d2101026dd9f8ca6b19d87a41a14d86490d5e /src/plugins/remotelinux/abstractpackagingstep.cpp
parent2f021edfddc0483202d1bb434cb30accb8059899 (diff)
downloadqt-creator-97496df1bf889c69f686edf707ba71a226064067.tar.gz
Task: Update Task to use Utils::FileName and Core::Id
Use Utils::FileName and Core::Id in Task structure. Change-Id: Ia0ed459f86df36ffe547abde7c240b0ac409bcf5 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/abstractpackagingstep.cpp')
-rw-r--r--src/plugins/remotelinux/abstractpackagingstep.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/abstractpackagingstep.cpp b/src/plugins/remotelinux/abstractpackagingstep.cpp
index 7ba42c8691..89e8b96423 100644
--- a/src/plugins/remotelinux/abstractpackagingstep.cpp
+++ b/src/plugins/remotelinux/abstractpackagingstep.cpp
@@ -172,8 +172,8 @@ void AbstractPackagingStep::setDeploymentInfoUnmodified()
void AbstractPackagingStep::raiseError(const QString &errorMessage)
{
emit addOutput(errorMessage, BuildStep::ErrorOutput);
- emit addTask(Task(Task::Error, errorMessage, QString(), -1,
- Constants::TASK_CATEGORY_BUILDSYSTEM));
+ emit addTask(Task(Task::Error, errorMessage, Utils::FileName(), -1,
+ Core::Id(Constants::TASK_CATEGORY_BUILDSYSTEM)));
}
} // namespace RemoteLinux