From aab8c277ac393673ee566b790d766d87c566b77e Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Fri, 26 May 2017 16:26:52 -0400 Subject: [PATCH] Fix Codan quick-fixes - remove plugin.properties - move fix-it regexes to bundle.properties Change-Id: I6d389a12348e35d98c25ae18ca4026e03ea3e41d --- .../org.eclipse.cdt.codan.checkers.ui/META-INF/MANIFEST.MF | 1 - .../OSGI-INF/l10n/bundle.properties | 6 ++++++ codan/org.eclipse.cdt.codan.checkers.ui/plugin.properties | 6 ------ 3 files changed, 6 insertions(+), 7 deletions(-) delete mode 100644 codan/org.eclipse.cdt.codan.checkers.ui/plugin.properties diff --git a/codan/org.eclipse.cdt.codan.checkers.ui/META-INF/MANIFEST.MF b/codan/org.eclipse.cdt.codan.checkers.ui/META-INF/MANIFEST.MF index 828c809af13..92d827a010c 100644 --- a/codan/org.eclipse.cdt.codan.checkers.ui/META-INF/MANIFEST.MF +++ b/codan/org.eclipse.cdt.codan.checkers.ui/META-INF/MANIFEST.MF @@ -19,7 +19,6 @@ Require-Bundle: org.eclipse.core.resources, Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Bundle-Vendor: %Bundle-Vendor -Bundle-Localization: plugin 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" diff --git a/codan/org.eclipse.cdt.codan.checkers.ui/OSGI-INF/l10n/bundle.properties b/codan/org.eclipse.cdt.codan.checkers.ui/OSGI-INF/l10n/bundle.properties index b5ef74b8ff1..22dbaa3c820 100644 --- a/codan/org.eclipse.cdt.codan.checkers.ui/OSGI-INF/l10n/bundle.properties +++ b/codan/org.eclipse.cdt.codan.checkers.ui/OSGI-INF/l10n/bundle.properties @@ -11,3 +11,9 @@ #Properties file for org.eclipse.cdt.codan.checkers.ui Bundle-Vendor = Eclipse CDT 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.* diff --git a/codan/org.eclipse.cdt.codan.checkers.ui/plugin.properties b/codan/org.eclipse.cdt.codan.checkers.ui/plugin.properties deleted file mode 100644 index 90857c91515..00000000000 --- a/codan/org.eclipse.cdt.codan.checkers.ui/plugin.properties +++ /dev/null @@ -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.* \ No newline at end of file