Summary: | c++ parser runs on the active file, even if it isn't a c++ file | ||
---|---|---|---|
Product: | [Applications] kdevelop | Reporter: | Luke Tucker <luke_tucker> |
Component: | Problem reporter | Assignee: | kdevelop-bugs-null |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | nathan_baum |
Priority: | NOR | ||
Version: | 3.2.0 | ||
Target Milestone: | --- | ||
Platform: | openSUSE | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Luke Tucker
2005-08-23 12:31:35 UTC
KDevelop's parser doesn't support IDL. It tries to parser it as a C++ file and (obviously) finds problems. The bug here is that non-C/C++ files are parsed at all. *** Bug 111479 has been marked as a duplicate of this bug. *** *** Bug 91634 has been marked as a duplicate of this bug. *** SVN commit 617453 by dagerbo: This patch does a few related things: #removes a lot of unused and weird stuff from problemreporter #all parser activation decisions are moved back into cppsupport where it belongs, problemreporter is just UI #fixes flickering problem tabs #fixes a case where already open documents don't get a problem icon marker #fixes sorting so it happens numerically, no lexographically #afaik fixes repeated entries. if this still happens, I don't think problem reporter is responsible #afaik fixes the remaining cases where the parser could be invoked against non-c/c++ files BUG: 111341 BUG: 117621 BUG: 131716 BUG: 135958 M +53 -14 cppsupportpart.cpp M +9 -4 cppsupportpart.h M +44 -144 problemreporter.cpp M +7 -16 problemreporter.h |