2010-07-11 00:04:53 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2013-01-01 17:29:08 +01:00
|
|
|
* Copyright (C) 2007-2013 Daniel Marjamäki and Cppcheck team.
|
2010-07-11 00:04:53 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "erroritem.h"
|
|
|
|
|
2011-03-07 22:43:59 +01:00
|
|
|
ErrorItem::ErrorItem()
|
|
|
|
: severity(Severity::none)
|
2011-04-16 17:42:32 +02:00
|
|
|
, inconclusive(false)
|
2011-03-07 22:43:59 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-07-11 00:04:53 +02:00
|
|
|
ErrorItem::ErrorItem(const ErrorLine &line)
|
2012-10-14 12:42:44 +02:00
|
|
|
: file(line.file)
|
|
|
|
, files(line.file)
|
|
|
|
, errorId(line.errorId)
|
|
|
|
, severity(line.severity)
|
|
|
|
, inconclusive(line.inconclusive)
|
|
|
|
, summary(line.summary)
|
|
|
|
, message(line.message)
|
2010-07-11 00:04:53 +02:00
|
|
|
{
|
2010-07-12 00:51:36 +02:00
|
|
|
lines.append(line.line);
|
2010-07-11 00:04:53 +02:00
|
|
|
}
|
2010-08-28 19:37:21 +02:00
|
|
|
|
|
|
|
QString ErrorItem::ToString() const
|
|
|
|
{
|
2011-10-12 21:18:54 +02:00
|
|
|
QString str = file + " - " + errorId + " - ";
|
2011-04-16 13:04:20 +02:00
|
|
|
if (inconclusive)
|
|
|
|
str += "inconclusive ";
|
|
|
|
str += GuiSeverity::toString(severity) +"\n";
|
2011-01-27 07:47:28 +01:00
|
|
|
str += summary + "\n";
|
|
|
|
str += message + "\n";
|
2011-10-13 20:53:06 +02:00
|
|
|
for (int i = 0; i < files.size(); i++) {
|
2011-01-27 07:47:28 +01:00
|
|
|
str += " " + files[i] + ": " + QString::number(lines[i]) + "\n";
|
|
|
|
}
|
2010-08-28 19:37:21 +02:00
|
|
|
return str;
|
|
|
|
}
|