Add operator= to Task

Reviewed-by: dt
This commit is contained in:
Tobias Hunger
2010-06-24 16:14:29 +02:00
parent e1b6f3a52d
commit 8a61347be9
2 changed files with 13 additions and 0 deletions

View File

@@ -32,6 +32,17 @@
namespace ProjectExplorer
{
Task &Task::operator=(const Task &source)
{
type = source.type;
description = source.description;
file = source.file;
line = source.line;
category = source.category;
formats = source.formats;
return *this;
}
//
// functions
//