Fixing #270763 - Move clang-tidy integration to nb contrib release82
authorIlia Gromov <ilia@netbeans.org>
Wed, 07 Jun 2017 14:01:00 +0300
branchrelease82
changeset 1841869fa168e65e4
parent 18404 d5e37d181d90
child 18419 122f2463cafe
Fixing #270763 - Move clang-tidy integration to nb contrib
(transplanted from 965f8fab9ed51d43226a858722da2095b203d301)
ide.analysis.modernize/src/org/netbeans/modules/ide/analysis/modernize/Bundle.properties
ide.analysis.modernize/src/org/netbeans/modules/ide/analysis/modernize/impl/ModernizeAnalyzerImpl.java
     1.1 --- a/ide.analysis.modernize/src/org/netbeans/modules/ide/analysis/modernize/Bundle.properties	Tue May 30 15:45:52 2017 +0300
     1.2 +++ b/ide.analysis.modernize/src/org/netbeans/modules/ide/analysis/modernize/Bundle.properties	Wed Jun 07 14:01:00 2017 +0300
     1.3 @@ -1,8 +1,8 @@
     1.4 -OpenIDE-Module-Display-Category=Oracle Developer Studio
     1.5 +OpenIDE-Module-Display-Category=Analysis tools
     1.6  OpenIDE-Module-Long-Description=\
     1.7      This plugin enables clang-tidy analysis on C/C++ projects and files via Source->Inspect or right in the Editor.\n\
     1.8      Works only with "Clang-tidy wrapper for <OS> <bitness>" plugin.\n\n\
     1.9      Please note that in order to have clang-tidy hints in the Editor you should run Source->Inspect on your whole project.\n\
    1.10      You can view list of checks and enable/disable them in Options->Editor->Hints.
    1.11 -OpenIDE-Module-Name=Clang-TIdy integration
    1.12 -OpenIDE-Module-Short-Description=clang-tidy analyzer integration
    1.13 +OpenIDE-Module-Name=Clang-tidy integration
    1.14 +OpenIDE-Module-Short-Description=Clang-tidy analyzer integration
     2.1 --- a/ide.analysis.modernize/src/org/netbeans/modules/ide/analysis/modernize/impl/ModernizeAnalyzerImpl.java	Tue May 30 15:45:52 2017 +0300
     2.2 +++ b/ide.analysis.modernize/src/org/netbeans/modules/ide/analysis/modernize/impl/ModernizeAnalyzerImpl.java	Wed Jun 07 14:01:00 2017 +0300
     2.3 @@ -155,7 +155,7 @@
     2.4          public AnalyzerFactoryImpl() {
     2.5              super(ModernizeErrorProvider.NAME,
     2.6                      NbBundle.getMessage(ModernizeErrorProvider.class, "Modernize_NAME"), //NOI18N
     2.7 -                    ImageUtilities.loadImage("ide/analysis/modernize/impl/bugs.png")); //NOI18N
     2.8 +                    ImageUtilities.loadImage("org/netbeans/modules/ide/analysis/modernize/impl/bugs.png")); //NOI18N
     2.9          }
    2.10  
    2.11          @Override