forked from qt-creator/qt-creator
TaskHub: De-noise user code
Change-Id: Ieb559e884fb08c96d739cf7684389ff740a6233e Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user