TaskHub: De-noise user code

Change-Id: Ieb559e884fb08c96d739cf7684389ff740a6233e
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
hjk
2013-08-01 14:16:10 +02:00
parent f5afaac070
commit d0eb10582b
18 changed files with 39 additions and 49 deletions

View File

@@ -44,7 +44,7 @@ Task::Task() : taskId(0), type(Unknown), line(-1)
{ }
Task::Task(TaskType type_, const QString &description_,
const Utils::FileName &file_, int line_, const Core::Id &category_) :
const Utils::FileName &file_, int line_, Core::Id category_) :
taskId(s_nextId), type(type_), description(description_),
file(file_), line(line_), movedLine(line_), category(category_)
{
@@ -57,7 +57,9 @@ void Task::addMark(TextEditor::BaseTextMark *mark)
}
bool Task::isNull() const
{ return taskId == 0; }
{
return taskId == 0;
}
void Task::clear()
{