Skip to content

Commit

Permalink
html-writer: rename the newDefect CSS class
Browse files Browse the repository at this point in the history
... to `newFinding` for consistency.

Signed-off-by: Siteshwar Vashisht <[email protected]>
  • Loading branch information
siteshwar committed Jul 25, 2024
1 parent fe7896a commit e482bd7
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 39 deletions.
4 changes: 2 additions & 2 deletions src/lib/writer-html.cc
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ namespace HtmlLib {
.infoEvent { color:#808080; }
.infoEventComment { color:#00C0C0; }
.traceEvent { color: #C0C0C0; }
.newDefect { color: #00FF00; }
.newFinding { color: #00FF00; }
.parseWarning { color: #FF0000; }
.impFlag { color: #FF0000; font-weight: bold; }
#scanProps { font-family: monospace; }
Expand Down Expand Up @@ -462,7 +462,7 @@ void HtmlWriter::Private::writeNewDefWarning(const Defect &def)
return;

// a newly introduced defect
this->str << " <span class='newDefect'>[<b>warning:</b> "
this->str << " <span class='newFinding'>[<b>warning:</b> "
<< this->newDefMsg << "]</span>";
}

Expand Down
Loading

0 comments on commit e482bd7

Please sign in to comment.