[geany/geany-plugins] 5ab41f: Merge pull request #882 from LarsGit223/inc-geanyplugins-h
LarsGit223
git-noreply at xxxxx
Thu Jul 25 16:52:51 UTC 2019
Branch: refs/heads/master
Author: LarsGit223 <LarsGit223 at users.noreply.github.com>
Committer: GitHub <noreply at github.com>
Date: Thu, 25 Jul 2019 16:52:51 UTC
Commit: 5ab41fe50b84023e18cf4a1b9ad42bf344ca8c92
https://github.com/geany/geany-plugins/commit/5ab41fe50b84023e18cf4a1b9ad42bf344ca8c92
Log Message:
-----------
Merge pull request #882 from LarsGit223/inc-geanyplugins-h
Cleanup: fixed usage of '#include "geanyplugin.h"'
Modified Paths:
--------------
addons/src/addons.c
addons/src/ao_blanklines.c
addons/src/ao_colortip.c
addons/src/ao_markword.c
addons/src/ao_systray.c
debugger/src/breakpoints.c
debugger/src/callbacks.h
debugger/src/dpaned.c
debugger/src/markers.c
debugger/src/markers.h
debugger/src/tpage.c
geanydoc/src/config.c
geanydoc/src/geanydoc.c
geanyextrasel/src/extrasel.c
geanyinsertnum/src/insertnum.c
geanylua/gsdlg.c
geanynumberedbookmarks/src/geanynumberedbookmarks.c
geanyprj/src/geanyprj.h
keyrecord/src/keyrecord.c
lineoperations/src/linefunctions.h
lineoperations/src/lineoperations.c
scope/src/common.h
scope/src/plugme.c
treebrowser/src/treebrowser.c
Modified: addons/src/addons.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -26,7 +26,7 @@
# include "config.h"
#endif
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "addons.h"
#include "ao_blanklines.h"
Modified: addons/src/ao_blanklines.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -19,7 +19,7 @@
* MA 02110-1301, USA.
*/
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "addons.h"
#include "ao_blanklines.h"
Modified: addons/src/ao_colortip.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -22,7 +22,7 @@
#include <gtk/gtk.h>
#include <glib-object.h>
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "addons.h"
#include "ao_colortip.h"
Modified: addons/src/ao_markword.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -24,7 +24,7 @@
#include <gtk/gtk.h>
#include <glib-object.h>
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "addons.h"
#include "ao_markword.h"
Modified: addons/src/ao_systray.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -19,7 +19,7 @@
*/
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "addons.h"
#include "ao_systray.h"
Modified: debugger/src/breakpoints.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -27,7 +27,7 @@
#include <string.h>
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "breakpoints.h"
#include "utils.h"
Modified: debugger/src/callbacks.h
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -24,7 +24,7 @@
#include <glib.h>
#include <glib-object.h>
-#include "geanyplugin.h"
+#include <geanyplugin.h>
void on_document_open(GObject *obj, GeanyDocument *doc, gpointer user_data);
void on_document_save(GObject *obj, GeanyDocument *doc, gpointer user_data);
Modified: debugger/src/dpaned.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -29,7 +29,7 @@
#include <memory.h>
#include <string.h>
-#include "geanyplugin.h"
+#include <geanyplugin.h>
extern GeanyData *geany_data;
#include "dpaned.h"
Modified: debugger/src/markers.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -25,7 +25,7 @@
#include <string.h>
-#include "geanyplugin.h"
+#include <geanyplugin.h>
extern GeanyData *geany_data;
#include "markers.h"
Modified: debugger/src/markers.h
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -22,7 +22,7 @@
#ifndef MARKERS_H
#define MARKERS_H
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "breakpoint.h"
Modified: debugger/src/tpage.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -32,7 +32,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include <gp_gtkcompat.h>
extern GeanyData *geany_data;
Modified: geanydoc/src/config.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -24,7 +24,7 @@
#include <string.h>
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "geanydoc.h"
Modified: geanydoc/src/geanydoc.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -29,7 +29,7 @@
#include "config.h"
#endif
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "geanydoc.h"
Modified: geanyextrasel/src/extrasel.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -23,7 +23,7 @@
#include <gdk/gdkkeysyms.h>
-#include "geanyplugin.h"
+#include <geanyplugin.h>
GeanyPlugin *geany_plugin;
GeanyData *geany_data;
Modified: geanyinsertnum/src/insertnum.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -26,7 +26,7 @@
#include <stdlib.h>
#include <string.h>
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#ifndef GTK_COMPAT_H
#define GtkComboBoxText GtkComboBox
Modified: geanylua/gsdlg.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -27,7 +27,7 @@
#include <stdlib.h>
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#define TextKey "gsdlg_TextKey_bc4871f4e3478ab5234e28432460a6b8"
Modified: geanynumberedbookmarks/src/geanynumberedbookmarks.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -11,7 +11,7 @@
#include "config.h"
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "utils.h"
#include "Scintilla.h"
#include <stdlib.h>
Modified: geanyprj/src/geanyprj.h
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -20,7 +20,7 @@
#ifndef __GEANYPRJ_H__
#define __GEANYPRJ_H__
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#ifdef __GNUC__
# ifdef DEBUG
Modified: keyrecord/src/keyrecord.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -26,7 +26,7 @@
*/
-#include "geanyplugin.h" /* plugin API, always comes first */
+#include <geanyplugin.h> /* plugin API, always comes first */
#include "keybindings.h"
#include <geany.h>
#include "Scintilla.h" /* for the SCNotification struct */
Modified: lineoperations/src/linefunctions.h
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -24,7 +24,7 @@
#ifndef LINEFUNCTIONS_H
#define LINEFUNCTIONS_H
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "Scintilla.h"
#include <stdlib.h> /* qsort */
#include <string.h>
Modified: lineoperations/src/lineoperations.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -22,7 +22,7 @@
#include "config.h"
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include "Scintilla.h"
#include "linefunctions.h"
Modified: scope/src/common.h
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "geanyplugin.h"
+#include <geanyplugin.h>
extern GeanyPlugin *geany_plugin;
extern GeanyData *geany_data;
Modified: scope/src/plugme.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -27,7 +27,7 @@
#include <gp_gtkcompat.h>
-#include "geanyplugin.h"
+#include <geanyplugin.h>
extern GeanyData *geany_data;
Modified: treebrowser/src/treebrowser.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -17,7 +17,7 @@
#include <gdk/gdkkeysyms.h>
#include "geany.h"
-#include "geanyplugin.h"
+#include <geanyplugin.h>
#include <gp_gtkcompat.h>
#include <gio/gio.h>
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Plugins-Commits
mailing list