mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 14:12:10 +02:00
Fix Codan quick-fixes
- remove plugin.properties - move fix-it regexes to bundle.properties Change-Id: I6d389a12348e35d98c25ae18ca4026e03ea3e41d
This commit is contained in:
parent
c04ef7a113
commit
aab8c277ac
3 changed files with 6 additions and 7 deletions
|
@ -19,7 +19,6 @@ Require-Bundle: org.eclipse.core.resources,
|
||||||
Bundle-ActivationPolicy: lazy
|
Bundle-ActivationPolicy: lazy
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||||
Bundle-Vendor: %Bundle-Vendor
|
Bundle-Vendor: %Bundle-Vendor
|
||||||
Bundle-Localization: plugin
|
|
||||||
Export-Package: org.eclipse.cdt.codan.internal.checkers.ui;x-internal:=true,
|
Export-Package: org.eclipse.cdt.codan.internal.checkers.ui;x-internal:=true,
|
||||||
org.eclipse.cdt.codan.internal.checkers.ui.quickfix;x-friends:="org.eclipse.cdt.codan.checkers.ui.tests"
|
org.eclipse.cdt.codan.internal.checkers.ui.quickfix;x-friends:="org.eclipse.cdt.codan.checkers.ui.tests"
|
||||||
|
|
||||||
|
|
|
@ -11,3 +11,9 @@
|
||||||
#Properties file for org.eclipse.cdt.codan.checkers.ui
|
#Properties file for org.eclipse.cdt.codan.checkers.ui
|
||||||
Bundle-Vendor = Eclipse CDT
|
Bundle-Vendor = Eclipse CDT
|
||||||
Bundle-Name = Codan Checkers UI
|
Bundle-Name = Codan Checkers UI
|
||||||
|
GCCFixitNoMember.errormsg=\u2018(.*)\u2019 has no member named \u2018(.*)\u2019.*did you mean \u2018(.*)\u2019.*
|
||||||
|
GCCFixitMissingSemicolon.errormsg=expected \u2018;\u2019 before \u2018(.*)\u2019.*
|
||||||
|
GCCFixitNoPointerOpCPP=request for member \u2018.*\u2019 in \u2018(.*)\u2019, which is of pointer type \u2018.*\u2019.*maybe you meant to use \u2018->\u2019.*
|
||||||
|
GCCFixitNoPointerOperator.errormsg=\u2018(.*)\u2019 is a pointer(.*)did you mean to use \u2018->\u2019.*
|
||||||
|
GCCFixitInvalidPtrTypeCPP=base operand of \u2018->\u2019 has non-pointer type \u2018(.*)\u2019.*
|
||||||
|
GCCFixitInvalidPtrStruct.errormsg=invalid type argument of \u2018->\u2019.*have \u2018struct (.*)\u2019.*
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
GCCFixitNoMember.errormsg=\u2018(.*)\u2019 has no member named \u2018(.*)\u2019.*did you mean \u2018(.*)\u2019.*
|
|
||||||
GCCFixitMissingSemicolon.errormsg=expected \u2018;\u2019 before \u2018(.*)\u2019.*
|
|
||||||
GCCFixitNoPointerOpCPP=request for member \u2018.*\u2019 in \u2018(.*)\u2019, which is of pointer type \u2018.*\u2019.*maybe you meant to use \u2018->\u2019.*
|
|
||||||
GCCFixitNoPointerOperator.errormsg=\u2018(.*)\u2019 is a pointer(.*)did you mean to use \u2018->\u2019.*
|
|
||||||
GCCFixitInvalidPtrTypeCPP=base operand of \u2018->\u2019 has non-pointer type \u2018(.*)\u2019.*
|
|
||||||
GCCFixitInvalidPtrStruct.errormsg=invalid type argument of \u2018->\u2019.*have \u2018struct (.*)\u2019.*
|
|
Loading…
Add table
Reference in a new issue