Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void reportProblem(Problem problem) throws CoreException {
}
message.append(problem.getMessage());
final String completeMessage = Messages.bind(
Messages.ProblemReporter_Message, problem.getCategory(),
Messages.ProblemReporter_Message, (problem.getCategory() + " [" + problem.getId() + "]"),
message);
for (IResource resource : problem.getResources()) {
// for each resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ BuildPropertyPage_RunOnBuild=Run on build
Console_Title=cppcheck

ProblemReporter_ProblemInExternalFile=Problem in external file {0} line {1}:
ProblemReporter_Message=(cppcheck {0}) {1}
ProblemReporter_Message=cppcheck {0} {1}
ProblemsPreferencePage_Description=Select which problems should be reported in which severity.
ProblemsTreeEditor_Name=Name
ProblemsTreeEditor_Problems=Problems
Expand Down