[geany/geany-plugins] a042d1: Merge pull request #388 from techee/remove_deprecated

Frank Lanitz git-noreply at xxxxx
Tue Mar 8 18:13:23 UTC 2016


Branch:      refs/heads/master
Author:      Frank Lanitz <frank at frank.uvena.de>
Committer:   Frank Lanitz <frank at frank.uvena.de>
Date:        Tue, 08 Mar 2016 18:13:23 UTC
Commit:      a042d1d1ba7ba694ab99be2c6992f46736fad971
             https://github.com/geany/geany-plugins/commit/a042d1d1ba7ba694ab99be2c6992f46736fad971

Log Message:
-----------
Merge pull request #388 from techee/remove_deprecated

Remove deprecated GeanyFunctions


Modified Paths:
--------------
    autoclose/src/autoclose.c
    automark/src/automark.c
    codenav/src/codenavigation.c
    codenav/src/codenavigation.h
    commander/src/commander-plugin.c
    debugger/src/breakpoints.c
    debugger/src/btnpanel.c
    debugger/src/callbacks.c
    debugger/src/dbm_gdb.c
    debugger/src/debug.c
    debugger/src/dpaned.c
    debugger/src/envtree.c
    debugger/src/keys.c
    debugger/src/markers.c
    debugger/src/plugin.c
    debugger/src/tabs.c
    debugger/src/tpage.c
    debugger/src/utils.c
    defineformat/src/defineformat.c
    devhelp/src/dhp-plugin.c
    devhelp/src/dhp-plugin.h
    geanydoc/src/config.c
    geanydoc/src/geanydoc.c
    geanyextrasel/src/extrasel.c
    geanygendoc/src/ggd-plugin.c
    geanygendoc/src/ggd-plugin.h
    geanyinsertnum/src/insertnum.c
    geanylatex/src/geanylatex.c
    geanylatex/src/geanylatex.h
    geanylipsum/src/geanylipsum.c
    geanymacro/src/geanymacro.c
    geanyminiscript/src/gms.c
    geanyminiscript/src/gms.h
    geanynumberedbookmarks/src/geanynumberedbookmarks.c
    geanypg/src/geanypg.c
    geanypg/src/geanypg.h
    geanyprj/src/geanyprj.c
    geanyprj/src/geanyprj.h
    geanyprj/src/unittests.c
    geanysendmail/src/geanysendmail.c
    geanyvc/src/externdiff.c
    geanyvc/src/geanyvc.c
    geanyvc/src/utils.c
    geniuspaste/src/geniuspaste.c
    git-changebar/src/gcb-plugin.c
    markdown/src/plugin.c
    overview/overview/overviewplugin.c
    overview/overview/overviewplugin.h
    pairtaghighlighter/src/pair_tag_highlighter.c
    pohelper/src/gph-plugin.c
    pretty-printer/src/PluginEntry.c
    shiftcolumn/src/shiftcolumn.c
    tableconvert/src/tableconvert.c
    tableconvert/src/tableconvert.h
    treebrowser/src/treebrowser.c
    updatechecker/src/updatechecker.c
    webhelper/src/gwh-plugin.c
    webhelper/src/gwh-plugin.h
    xmlsnippets/src/plugin.c
    xmlsnippets/src/plugin.h

Modified: autoclose/src/autoclose.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -41,9 +41,8 @@
 
 GeanyPlugin	*geany_plugin;
 GeanyData	*geany_data;
-GeanyFunctions	*geany_functions;
 
-PLUGIN_VERSION_CHECK(218)
+PLUGIN_VERSION_CHECK(224)
 PLUGIN_SET_TRANSLATABLE_INFO(
 	LOCALEDIR,
 	GETTEXT_PACKAGE,


Modified: automark/src/automark.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -39,9 +39,8 @@
 
 GeanyPlugin	*geany_plugin;
 GeanyData	*geany_data;
-GeanyFunctions	*geany_functions;
 
-PLUGIN_VERSION_CHECK(216)
+PLUGIN_VERSION_CHECK(224)
 PLUGIN_SET_TRANSLATABLE_INFO(
 	LOCALEDIR,
 	GETTEXT_PACKAGE,


Modified: codenav/src/codenavigation.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -34,7 +34,7 @@
 
 /* Check that the running Geany supports the plugin API used below, and check
  * for binary compatibility. */
-PLUGIN_VERSION_CHECK(200)
+PLUGIN_VERSION_CHECK(224)
 
 /* All plugins must set name, description, version and author. */
 PLUGIN_SET_TRANSLATABLE_INFO(
@@ -63,7 +63,6 @@ typedef enum
 /* These items are set by Geany before plugin_init() is called. */
 GeanyPlugin		*geany_plugin;
 GeanyData		*geany_data;
-GeanyFunctions	*geany_functions;
 
 static GtkListStore *list_store;	/* for settings dialog */
 


Modified: codenav/src/codenavigation.h
2 lines changed, 0 insertions(+), 2 deletions(-)
===================================================================
@@ -42,7 +42,6 @@
 
 /* Last */
 #include "plugindata.h"		/* this defines the plugin API */
-#include "geanyfunctions.h"	/* this wraps geany_functions function pointers */
 
 /* Debug flag */
 /*#define CODE_NAVIGATION_DEBUG*/
@@ -81,7 +80,6 @@ enum
 /* Items for controlling geany */
 extern GeanyPlugin		*geany_plugin;
 extern GeanyData		*geany_data;
-extern GeanyFunctions	*geany_functions;
 
 extern GeanyKeyGroup *plugin_key_group;
 


Modified: commander/src/commander-plugin.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -34,9 +34,8 @@
 
 GeanyPlugin      *geany_plugin;
 GeanyData        *geany_data;
-GeanyFunctions   *geany_functions;
 
-PLUGIN_VERSION_CHECK(205)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO (
   LOCALEDIR, GETTEXT_PACKAGE,


Modified: debugger/src/breakpoints.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -28,7 +28,6 @@
 #include <string.h>
 
 #include "geanyplugin.h"
-extern GeanyFunctions	*geany_functions;
 
 #include "breakpoints.h"
 #include "utils.h"


Modified: debugger/src/btnpanel.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -30,7 +30,6 @@
 #endif
 #include <geanyplugin.h>
 
-extern GeanyFunctions	*geany_functions;
 extern GeanyPlugin		*geany_plugin;
 
 #include "gui.h"


Modified: debugger/src/callbacks.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -44,7 +44,6 @@
 #include "dconfig.h"
 #include "tabs.h"
 
-extern GeanyFunctions *geany_functions;
 
 /*
  * 	Set breakpoint and stack markers for a file


Modified: debugger/src/dbm_gdb.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -33,7 +33,6 @@
 	#include "config.h"
 #endif
 #include <geanyplugin.h>
-extern GeanyFunctions	*geany_functions;
 extern GeanyData		*geany_data;
 
 #include "breakpoint.h"


Modified: debugger/src/debug.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -56,7 +56,6 @@ int grantpt(int fd);
 	#include "config.h"
 #endif
 #include <geanyplugin.h>
-extern GeanyFunctions	*geany_functions;
 extern GeanyData		*geany_data;
 
 #include "tpage.h"


Modified: debugger/src/dpaned.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -30,7 +30,6 @@
 #include <string.h>
 
 #include "geanyplugin.h"
-extern GeanyFunctions	*geany_functions;
 extern GeanyData		*geany_data;
 
 #include "dpaned.h"


Modified: debugger/src/envtree.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -30,7 +30,6 @@
 #endif
 #include <geanyplugin.h>
 
-extern GeanyFunctions	*geany_functions;
 extern GeanyPlugin		*geany_plugin;
 
 #include <gdk/gdkkeysyms.h>


Modified: debugger/src/keys.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -28,7 +28,6 @@
 #endif
 #include <geanyplugin.h>
 
-extern GeanyFunctions	*geany_functions;
 extern GeanyPlugin		*geany_plugin;
 
 #include "keys.h"


Modified: debugger/src/markers.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -26,7 +26,6 @@
 #include <string.h>
 
 #include "geanyplugin.h"
-extern GeanyFunctions	*geany_functions;
 extern GeanyData		*geany_data;
 
 #include "markers.h"


Modified: debugger/src/plugin.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -44,12 +44,11 @@
 /* These items are set by Geany before plugin_init() is called. */
 GeanyPlugin		*geany_plugin;
 GeanyData			*geany_data;
-GeanyFunctions	*geany_functions;
 
 
 /* Check that the running Geany supports the plugin API version used below, and check
  * for binary compatibility. */
-PLUGIN_VERSION_CHECK(209)
+PLUGIN_VERSION_CHECK(224)
 PLUGIN_SET_TRANSLATABLE_INFO(
 	LOCALEDIR,
 	GETTEXT_PACKAGE,


Modified: debugger/src/tabs.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -29,7 +29,6 @@
 #endif
 #include <geanyplugin.h>
 
-extern GeanyFunctions	*geany_functions;
 extern GeanyData		*geany_data;
 
 #include "tabs.h"


Modified: debugger/src/tpage.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -34,7 +34,6 @@
 #endif
 #include "geanyplugin.h"
 
-extern GeanyFunctions	*geany_functions;
 extern GeanyData		*geany_data;
 
 #include "breakpoints.h"


Modified: debugger/src/utils.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -36,7 +36,6 @@
 	#include "config.h"
 #endif
 #include <geanyplugin.h>
-extern GeanyFunctions	*geany_functions;
 
 #include "utils.h"
 


Modified: defineformat/src/defineformat.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -47,9 +47,8 @@
 
 GeanyPlugin		*geany_plugin;
 GeanyData		*geany_data;
-GeanyFunctions		*geany_functions;
 
-PLUGIN_VERSION_CHECK(216)
+PLUGIN_VERSION_CHECK(224)
 PLUGIN_SET_TRANSLATABLE_INFO(
 	LOCALEDIR,
 	GETTEXT_PACKAGE,


Modified: devhelp/src/dhp-plugin.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -36,7 +36,7 @@
 #include "dhp.h"
 
 
-PLUGIN_VERSION_CHECK(200)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(
 	LOCALEDIR,
@@ -49,7 +49,6 @@ PLUGIN_SET_TRANSLATABLE_INFO(
 
 GeanyPlugin	 	*geany_plugin;
 GeanyData	   	*geany_data;
-GeanyFunctions 	*geany_functions;
 
 struct PluginData plugin;
 


Modified: devhelp/src/dhp-plugin.h
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -31,7 +31,6 @@
 
 extern GeanyPlugin	 	*geany_plugin;
 extern GeanyData	   	*geany_data;
-extern GeanyFunctions 	*geany_functions;
 
 
 struct PluginData


Modified: geanydoc/src/config.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -29,7 +29,6 @@
 #include "geanydoc.h"
 
 extern GeanyData *geany_data;
-extern GeanyFunctions *geany_functions;
 
 const gchar defaults[] =
 	"[C]\n"


Modified: geanydoc/src/geanydoc.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -37,7 +37,6 @@
 /* These items are set by Geany before init() is called. */
 PluginFields *plugin_fields;
 GeanyData *geany_data;
-GeanyFunctions *geany_functions;
 
 static GtkWidget *keyb1;
 static GtkWidget *keyb2;
@@ -45,7 +44,7 @@ static GtkWidget *keyb2;
 
 /* Check that Geany supports plugin API version 128 or later, and check
  * for binary compatibility. */
-PLUGIN_VERSION_CHECK(128)
+PLUGIN_VERSION_CHECK(224)
 /* All plugins must set name, description, version and author. */
 PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
 	_("Doc"), _("Call documentation viewer on current symbol."), VERSION,


Modified: geanyextrasel/src/extrasel.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -27,9 +27,8 @@
 
 GeanyPlugin	*geany_plugin;
 GeanyData	*geany_data;
-GeanyFunctions	*geany_functions;
 
-PLUGIN_VERSION_CHECK(189)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
 	_("Extra Selection"), _("Column mode, select to line / brace / anchor."),


Modified: geanygendoc/src/ggd-plugin.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -47,10 +47,9 @@
 /* These items are set by Geany before plugin_init() is called. */
 GeanyPlugin     *geany_plugin;
 GeanyData       *geany_data;
-GeanyFunctions  *geany_functions;
 
 /* TODO check minimum requierment */
-PLUGIN_VERSION_CHECK (221)
+PLUGIN_VERSION_CHECK (224)
 
 PLUGIN_SET_TRANSLATABLE_INFO (
   LOCALEDIR, GETTEXT_PACKAGE,


Modified: geanygendoc/src/ggd-plugin.h
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -39,7 +39,6 @@ G_BEGIN_DECLS
 /* Note that this cannot be hidden since it is accessed by the Geany instance */
 extern  GeanyPlugin      *geany_plugin;
 extern  GeanyData        *geany_data;
-extern  GeanyFunctions   *geany_functions;
 
 
 /* Begin of the plugin's self API */


Modified: geanyinsertnum/src/insertnum.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -37,9 +37,8 @@
 
 GeanyPlugin	*geany_plugin;
 GeanyData	*geany_data;
-GeanyFunctions	*geany_functions;
 
-PLUGIN_VERSION_CHECK(189)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
 	_("Insert Numbers"), _("Insert/Fill columns with numbers."),


Modified: geanylatex/src/geanylatex.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -33,7 +33,7 @@
 #include "geanylatex.h"
 #include "ctype.h"
 
-PLUGIN_VERSION_CHECK(217)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(
 	LOCALEDIR,
@@ -45,7 +45,6 @@ PLUGIN_SET_TRANSLATABLE_INFO(
 
 GeanyPlugin	 *geany_plugin;
 GeanyData	   *geany_data;
-GeanyFunctions  *geany_functions;
 
 /* Widgets for plugin */
 static GtkWidget *menu_latex = NULL;


Modified: geanylatex/src/geanylatex.h
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -46,7 +46,6 @@ typedef void (*MenuCallback) (G_GNUC_UNUSED GtkMenuItem * menuitem, G_GNUC_UNUSE
 
 extern GeanyPlugin	*geany_plugin;
 extern GeanyData	*geany_data;
-extern GeanyFunctions	*geany_functions;
 
 
 #define create_sub_menu(base_menu, menu, item, title) \


Modified: geanylipsum/src/geanylipsum.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -31,9 +31,8 @@
 
 GeanyPlugin		*geany_plugin;
 GeanyData		*geany_data;
-GeanyFunctions	*geany_functions;
 
-PLUGIN_VERSION_CHECK(188)
+PLUGIN_VERSION_CHECK(224)
 PLUGIN_SET_TRANSLATABLE_INFO(
 	LOCALEDIR,
 	GETTEXT_PACKAGE,


Modified: geanymacro/src/geanymacro.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -174,9 +174,8 @@ enum GEANY_MACRO_BUTTON {
 
 GeanyPlugin     *geany_plugin;
 GeanyData       *geany_data;
-GeanyFunctions  *geany_functions;
 
-PLUGIN_VERSION_CHECK(147)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
                              _("Macros"),_("Macros for Geany"),


Modified: geanyminiscript/src/gms.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -45,12 +45,11 @@
 
 GeanyPlugin     *geany_plugin;
 GeanyData       *geany_data;
-GeanyFunctions  *geany_functions;
 
 
 /* Check that the running Geany supports the plugin API used below, and check
  * for binary compatibility. */
-PLUGIN_VERSION_CHECK(100)
+PLUGIN_VERSION_CHECK(224)
 
 /* All plugins must set name, description, version and author. */
 PLUGIN_SET_TRANSLATABLE_INFO(


Modified: geanyminiscript/src/gms.h
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -27,7 +27,6 @@
 
 extern GeanyPlugin      *geany_plugin;
 extern GeanyData        *geany_data;
-extern GeanyFunctions   *geany_functions;
 
 
 #endif /* GMS_H */


Modified: geanynumberedbookmarks/src/geanynumberedbookmarks.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -52,9 +52,8 @@ typedef struct FileData
 
 GeanyPlugin     *geany_plugin;
 GeanyData       *geany_data;
-GeanyFunctions  *geany_functions;
 
-PLUGIN_VERSION_CHECK(147)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
                              "Numbered Bookmarks",


Modified: geanypg/src/geanypg.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -23,11 +23,10 @@
 /* These items are set by Geany before plugin_init() is called. */
 GeanyPlugin     *geany_plugin;
 GeanyData       *geany_data;
-GeanyFunctions  *geany_functions;
 
 /* Check that the running Geany supports the plugin API version used below, and check
  * for binary compatibility. */
-PLUGIN_VERSION_CHECK(201)
+PLUGIN_VERSION_CHECK(224)
 
 /* All plugins must set name, description, version and author. */
 PLUGIN_SET_TRANSLATABLE_INFO(


Modified: geanypg/src/geanypg.h
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -54,7 +54,6 @@ typedef struct
 
 extern GeanyPlugin     *geany_plugin;
 extern GeanyData       *geany_data;
-extern GeanyFunctions  *geany_functions;
 
 /* auxiliary functions (helper_functions.c) */
 void geanypg_init_ed(encrypt_data * ed);


Modified: geanyprj/src/geanyprj.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -34,13 +34,12 @@
 
 #include "geanyprj.h"
 
-PLUGIN_VERSION_CHECK(221)
+PLUGIN_VERSION_CHECK(224)
 PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
 			     "GeanyPrj", _("Alternative project support."), VERSION,
 			     "Yura Siamashka <yurand2 at gmail.com>")
 
 GeanyData      *geany_data;
-GeanyFunctions *geany_functions;
 
 
 static gchar    *config_file;


Modified: geanyprj/src/geanyprj.h
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -65,7 +65,6 @@ struct GeanyPrj
 };
 
 extern GeanyData *geany_data;
-extern GeanyFunctions *geany_functions;
 
 extern const gchar *project_type_string[NEW_PROJECT_TYPE_SIZE];
 extern gboolean (*project_type_filter[NEW_PROJECT_TYPE_SIZE]) (const gchar *);


Modified: geanyprj/src/unittests.c
3 lines changed, 0 insertions(+), 3 deletions(-)
===================================================================
@@ -8,9 +8,6 @@
 #include "geanyprj.h"
 
 
-GeanyFunctions *geany_functions = NULL;
-
-
 void
 file_setup(void)
 {


Modified: geanysendmail/src/geanysendmail.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -33,9 +33,8 @@
 
 GeanyPlugin		*geany_plugin;
 GeanyData		*geany_data;
-GeanyFunctions	*geany_functions;
 
-PLUGIN_VERSION_CHECK(199)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(
 	LOCALEDIR,


Modified: geanyvc/src/externdiff.c
2 lines changed, 0 insertions(+), 2 deletions(-)
===================================================================
@@ -26,8 +26,6 @@
 #include <shlobj.h>
 #endif
 
-extern GeanyFunctions *geany_functions;
-
 
 enum
 {


Modified: geanyvc/src/geanyvc.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -61,11 +61,10 @@ static GtkSpell *gtkspell_new_attach(GtkTextView *view, const gchar *lang, GErro
 #endif
 
 GeanyData *geany_data;
-GeanyFunctions *geany_functions;
 GeanyPlugin		*geany_plugin;
 
 
-PLUGIN_VERSION_CHECK(188)
+PLUGIN_VERSION_CHECK(224)
 PLUGIN_SET_TRANSLATABLE_INFO(
 	LOCALEDIR,
 	GETTEXT_PACKAGE,


Modified: geanyvc/src/utils.c
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -23,7 +23,6 @@
 #include "utils.h"
 
 extern GeanyData *geany_data;
-extern GeanyFunctions *geany_functions;
 
 
 /* Normalize a pathname. This collapses redundant separators and up-level references so that A//B, A/./B


Modified: geniuspaste/src/geniuspaste.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -63,7 +63,6 @@
 
 GeanyPlugin *geany_plugin;
 GeanyData *geany_data;
-GeanyFunctions *geany_functions;
 
 static GtkWidget *main_menu_item = NULL;
 
@@ -89,7 +88,7 @@ static gchar *author_name = NULL;
 static gchar *pastebin_selected = NULL;
 static gboolean check_button_is_checked = FALSE;
 
-PLUGIN_VERSION_CHECK(147)
+PLUGIN_VERSION_CHECK(224)
 PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE, PLUGIN_NAME,
                              _("Paste your code on your favorite pastebin"),
                              PLUGIN_VERSION, "Enrico Trotta <enrico.trt at gmail.com>")


Modified: git-changebar/src/gcb-plugin.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -49,10 +49,9 @@
 
 GeanyPlugin      *geany_plugin;
 GeanyData        *geany_data;
-GeanyFunctions   *geany_functions;
 
 
-PLUGIN_VERSION_CHECK(219) /* for document IDs */
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO (
   LOCALEDIR, GETTEXT_PACKAGE,


Modified: markdown/src/plugin.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -26,9 +26,8 @@
 
 GeanyData      *geany_data;
 GeanyPlugin    *geany_plugin;
-GeanyFunctions *geany_functions;
 
-PLUGIN_VERSION_CHECK(211)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
                              "Markdown",


Modified: overview/overview/overviewplugin.c
8 lines changed, 0 insertions(+), 8 deletions(-)
===================================================================
@@ -33,16 +33,8 @@
 
 GeanyPlugin    *geany_plugin;
 GeanyData      *geany_data;
-GeanyFunctions *geany_functions;
 
-/* scintilla_get_type() is needed but was only added to the API in 224, but
- * previous versions will still work on Linux since it's before the symbol
- * linkage was fixed up. TODO: remove this after next Geany release. */
-#if GEANY_API_VERSION >= 224
 PLUGIN_VERSION_CHECK (224)
-#else
-PLUGIN_VERSION_CHECK (211)
-#endif
 
 PLUGIN_SET_TRANSLATABLE_INFO (
   LOCALEDIR,


Modified: overview/overview/overviewplugin.h
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -29,7 +29,6 @@
 
 extern GeanyData      *geany_data;
 extern GeanyPlugin    *geany_plugin;
-extern GeanyFunctions *geany_functions;
 
 void     overview_plugin_queue_update (void);
 gboolean overview_geany_supports_left_position (void);


Modified: pairtaghighlighter/src/pair_tag_highlighter.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -24,13 +24,12 @@
 /* These items are set by Geany before plugin_init() is called. */
 GeanyPlugin     *geany_plugin;
 GeanyData       *geany_data;
-GeanyFunctions  *geany_functions;
 
 /* Is needed for clearing highlighting after moving cursor out
  * from the tag */
 static gint highlightedBrackets[] = {0, 0, 0, 0};
 
-PLUGIN_VERSION_CHECK(211)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE, _("Pair Tag Highlighter"),
                             _("Finds and highlights matching opening/closing HTML tag"),


Modified: pohelper/src/gph-plugin.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -31,10 +31,9 @@
 
 GeanyPlugin      *geany_plugin;
 GeanyData        *geany_data;
-GeanyFunctions   *geany_functions;
 
 
-PLUGIN_VERSION_CHECK (211) /* FIXME: what's the version really required? */
+PLUGIN_VERSION_CHECK (224)
 
 PLUGIN_SET_TRANSLATABLE_INFO (
   LOCALEDIR, GETTEXT_PACKAGE,


Modified: pretty-printer/src/PluginEntry.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -26,11 +26,10 @@
 
 GeanyPlugin*           geany_plugin;
 GeanyData*             geany_data;
-GeanyFunctions*        geany_functions;
 
 /*========================================== PLUGIN INFORMATION ==========================================================*/
 
-PLUGIN_VERSION_CHECK(130)
+PLUGIN_VERSION_CHECK(224)
 PLUGIN_SET_TRANSLATABLE_INFO(
     LOCALEDIR,
     GETTEXT_PACKAGE,


Modified: shiftcolumn/src/shiftcolumn.c
4 lines changed, 1 insertions(+), 3 deletions(-)
===================================================================
@@ -35,7 +35,6 @@
 #include "document.h"
 #include "keybindings.h"
 #include "plugindata.h"
-#include "geanyfunctions.h"
 
 #include <glib.h>
 #include <glib/gprintf.h>
@@ -43,9 +42,8 @@
 
 GeanyPlugin     *geany_plugin;
 GeanyData       *geany_data;
-GeanyFunctions  *geany_functions;
 
-PLUGIN_VERSION_CHECK(130)
+PLUGIN_VERSION_CHECK(224)
 PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
                              _("Shift Column"),
                              _("Shift a selection left and right"),


Modified: tableconvert/src/tableconvert.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -25,7 +25,7 @@
 #include "tableconvert.h"
 #include "tableconvert_ui.h"
 
-PLUGIN_VERSION_CHECK(200)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(
     LOCALEDIR, GETTEXT_PACKAGE, _("Tableconvert"),
@@ -34,7 +34,6 @@ PLUGIN_SET_TRANSLATABLE_INFO(
 
 GeanyPlugin	 	*geany_plugin;
 GeanyData	   	*geany_data;
-GeanyFunctions  *geany_functions;
 
 TableConvertRule tablerules[] = {
 	/* LaTeX */


Modified: tableconvert/src/tableconvert.h
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -31,7 +31,6 @@
 
 extern GeanyPlugin	*geany_plugin;
 extern GeanyData	*geany_data;
-extern GeanyFunctions	*geany_functions;
 
 
 enum


Modified: treebrowser/src/treebrowser.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -30,7 +30,6 @@
 /* These items are set by Geany before plugin_init() is called. */
 GeanyPlugin 				*geany_plugin;
 GeanyData 					*geany_data;
-GeanyFunctions 				*geany_functions;
 
 static gint 				page_number 				= 0;
 static GtkTreeStore 		*treestore;
@@ -119,7 +118,7 @@ enum
  * PLUGIN INFO
  * ------------------ */
 
-PLUGIN_VERSION_CHECK(188)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(
 	LOCALEDIR,


Modified: updatechecker/src/updatechecker.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -31,9 +31,8 @@
 
 GeanyPlugin     *geany_plugin;
 GeanyData       *geany_data;
-GeanyFunctions  *geany_functions;
 
-PLUGIN_VERSION_CHECK(203)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO(
     LOCALEDIR,


Modified: webhelper/src/gwh-plugin.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -40,10 +40,9 @@
 
 GeanyPlugin      *geany_plugin;
 GeanyData        *geany_data;
-GeanyFunctions   *geany_functions;
 
 
-PLUGIN_VERSION_CHECK(195)
+PLUGIN_VERSION_CHECK(224)
 
 PLUGIN_SET_TRANSLATABLE_INFO (
   LOCALEDIR, GETTEXT_PACKAGE,


Modified: webhelper/src/gwh-plugin.h
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -35,7 +35,6 @@ G_BEGIN_DECLS
 
 extern GeanyPlugin     *geany_plugin;
 extern GeanyData       *geany_data;
-extern GeanyFunctions  *geany_functions;
 
 
 G_END_DECLS


Modified: xmlsnippets/src/plugin.c
3 lines changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -35,10 +35,9 @@ static gboolean editor_notify_cb(GObject *object, GeanyEditor *editor,
 
 
 GeanyData *geany_data;
-GeanyFunctions *geany_functions;
 GeanyPlugin *geany_plugin;
 
-PLUGIN_VERSION_CHECK(210)
+PLUGIN_VERSION_CHECK(224)
 PLUGIN_SET_TRANSLATABLE_INFO(
   LOCALEDIR,
   GETTEXT_PACKAGE,


Modified: xmlsnippets/src/plugin.h
1 lines changed, 0 insertions(+), 1 deletions(-)
===================================================================
@@ -24,7 +24,6 @@
 #define XMLSNIPPETS_PLUGIN_H
 
 #include <geanyplugin.h>
-extern GeanyFunctions *geany_functions;
 
 #endif
 #endif



--------------
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