views:

226

answers:

2

Is there a way to clear the Problems window (and any related source code error/warning annotations) without invoking "Build All/Project/..." or "Clean project" (or deleting the project and then re-creating/re-importing it)?

A: 

I do not think so with CDT (I know plugins like findbugs have that ability to reset the problem markers, pending a new analysis).
You can only use the filter of the problem view, but that is not an actual solution, since it would only mask them in the Problem View and would not affect the source code annotations.

VonC
A: 

Yes, in the problems view:

  1. Right Click > Select All (or ctrl-A)
  2. Right Click > Delete

All the markers are then deleted.

James Blackburn