Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Mon, 07 Mar 2016 19:08:29 UTC Commit: 57827d25fbbd53eed8d8ef01e3a417e7ede6f8cc https://github.com/geany/geany-plugins/commit/57827d25fbbd53eed8d8ef01e3a417...
Log Message: ----------- spellcheck: Use <> to include Geany headers
Apparently some older versions of cppcheck get stupid when passed extra flags like `-D`, so try and make them happy by showing them those are library (system-wide) headers rather than application (local) ones.
Modified Paths: -------------- spellcheck/src/gui.c spellcheck/src/scplugin.c spellcheck/src/speller.c
Modified: spellcheck/src/gui.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -26,7 +26,7 @@ # include "config.h" #endif
-#include "geanyplugin.h" +#include <geanyplugin.h>
#include <ctype.h> #include <string.h>
Modified: spellcheck/src/scplugin.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -27,7 +27,7 @@ # include "config.h" #endif
-#include "geanyplugin.h" +#include <geanyplugin.h>
#include "scplugin.h"
Modified: spellcheck/src/speller.c 5 lines changed, 2 insertions(+), 3 deletions(-) =================================================================== @@ -26,9 +26,8 @@ # include "config.h" #endif
-#include "geanyplugin.h" - -#include "scintilla/SciLexer.h" +#include <geanyplugin.h> +#include <scintilla/SciLexer.h>
#include <string.h> #include <ctype.h>
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org