Add GeanyFunctions::p_msgwin to fix the prefix for generated macros.
Deprecate GeanyFunctions::p_msgwindow. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3323 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
7994128e38
commit
b2f966dca9
@ -5,6 +5,9 @@
|
||||
plugins/geanyfunctions.h:
|
||||
Rename sci_cmd() to sci_send_command() to match the plugin API and
|
||||
fix the generated macro name.
|
||||
* src/plugindata.h, src/plugins.c:
|
||||
Add GeanyFunctions::p_msgwin to fix the prefix for generated macros.
|
||||
Deprecate GeanyFunctions::p_msgwindow.
|
||||
|
||||
|
||||
2008-12-04 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
||||
|
@ -45,7 +45,7 @@
|
||||
enum {
|
||||
/** The Application Programming Interface (API) version, incremented
|
||||
* whenever any plugin data types are modified or appended to. */
|
||||
GEANY_API_VERSION = 116,
|
||||
GEANY_API_VERSION = 117,
|
||||
|
||||
/** The Application Binary Interface (ABI) version, incremented whenever
|
||||
* existing fields in the plugin data types have to be changed or reordered. */
|
||||
@ -207,7 +207,8 @@ typedef struct GeanyFunctions
|
||||
/** @deprecated Use ui_lookup_widget() instead. */
|
||||
struct SupportFuncs *p_support;
|
||||
struct DialogFuncs *p_dialogs; /**< See dialogs.h */
|
||||
struct MsgWinFuncs *p_msgwindow; /**< See msgwindow.h */
|
||||
/** @deprecated Use @ref GeanyFunctions::p_msgwin instead. */
|
||||
struct MsgWinFuncs *p_msgwindow;
|
||||
struct EncodingFuncs *p_encodings; /**< See encodings.h */
|
||||
struct KeybindingFuncs *p_keybindings; /**< See keybindings.h */
|
||||
struct TagManagerFuncs *p_tm; /**< See tagmanager/include */
|
||||
@ -218,8 +219,8 @@ typedef struct GeanyFunctions
|
||||
struct EditorFuncs *p_editor; /**< See editor.h */
|
||||
struct MainFuncs *p_main; /**< See main.h */
|
||||
struct PluginFuncs *p_plugin; /**< See plugins.c */
|
||||
/** See http://scintilla.org for the documentation. */
|
||||
struct ScintillaFuncs *p_scintilla;
|
||||
struct ScintillaFuncs *p_scintilla; /**< See ScintillaFuncs */
|
||||
struct MsgWinFuncs *p_msgwin; /**< See msgwindow.h */
|
||||
}
|
||||
GeanyFunctions;
|
||||
|
||||
@ -255,7 +256,7 @@ DocumentFuncs;
|
||||
|
||||
struct _ScintillaObject;
|
||||
|
||||
/** See http://scintilla.org for the documentation. */
|
||||
/** See http://scintilla.org for the full documentation. */
|
||||
typedef struct ScintillaFuncs
|
||||
{
|
||||
/** Send Scintilla a message. */
|
||||
|
@ -306,7 +306,8 @@ static GeanyFunctions geany_functions = {
|
||||
&editor_funcs,
|
||||
&main_funcs,
|
||||
&plugin_funcs,
|
||||
&scintilla_funcs
|
||||
&scintilla_funcs,
|
||||
&msgwin_funcs
|
||||
};
|
||||
|
||||
static GeanyData geany_data;
|
||||
|
Loading…
x
Reference in New Issue
Block a user