Kaydet (Commit) 3036bbe0 authored tarafından Nick Treleaven's avatar Nick Treleaven

Fix ScintillaFuncs::indic_clear() return type, and rename to

indicator_clear().


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2970 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 2b4fe976
...@@ -4,6 +4,9 @@ ...@@ -4,6 +4,9 @@
Use wrap label for the first label in the plugin manager dialog. Use wrap label for the first label in the plugin manager dialog.
Use scrolled window for plugin details text area to avoid resizing Use scrolled window for plugin details text area to avoid resizing
dialog components if a plugin has a long description. dialog components if a plugin has a long description.
* src/plugindata.h:
Fix ScintillaFuncs::indic_clear() return type, and rename to
indicator_clear().
2008-09-17 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de> 2008-09-17 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
enum { enum {
/** The Application Programming Interface (API) version, incremented /** The Application Programming Interface (API) version, incremented
* whenever any plugin data types are modified or appended to. */ * whenever any plugin data types are modified or appended to. */
GEANY_API_VERSION = 94, GEANY_API_VERSION = 95,
/** The Application Binary Interface (ABI) version, incremented whenever /** The Application Binary Interface (ABI) version, incremented whenever
* existing fields in the plugin data types have to be changed or reordered. */ * existing fields in the plugin data types have to be changed or reordered. */
...@@ -275,7 +275,7 @@ typedef struct ScintillaFuncs ...@@ -275,7 +275,7 @@ typedef struct ScintillaFuncs
gint (*get_current_line) (struct _ScintillaObject *sci); gint (*get_current_line) (struct _ScintillaObject *sci);
gboolean (*has_selection) (struct _ScintillaObject *sci); gboolean (*has_selection) (struct _ScintillaObject *sci);
gint (*get_tab_width) (struct _ScintillaObject *sci); gint (*get_tab_width) (struct _ScintillaObject *sci);
gint (*indic_clear) (struct _ScintillaObject *sci, gint start, gint end); void (*indicator_clear) (struct _ScintillaObject *sci, gint start, gint end);
} }
ScintillaFuncs; ScintillaFuncs;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment