SF.net SVN: geany:[4583] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Thu Jan 28 17:40:43 UTC 2010


Revision: 4583
          http://geany.svn.sourceforge.net/geany/?rev=4583&view=rev
Author:   ntrel
Date:     2010-01-28 17:40:42 +0000 (Thu, 28 Jan 2010)

Log Message:
-----------
Fix renaming sci_send_message(), sci_send_command() function pointers.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/plugindata.h

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2010-01-28 17:09:35 UTC (rev 4582)
+++ trunk/ChangeLog	2010-01-28 17:40:42 UTC (rev 4583)
@@ -1,3 +1,9 @@
+2010-01-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
+
+ * src/plugindata.h:
+   Fix renaming sci_send_message(), sci_send_command() function pointers.
+
+
 2010-01-25  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
 
  * src/highlighting.c, src/highlighting.h, src/sciwrappers.c,

Modified: trunk/src/plugindata.h
===================================================================
--- trunk/src/plugindata.h	2010-01-28 17:09:35 UTC (rev 4582)
+++ trunk/src/plugindata.h	2010-01-28 17:40:42 UTC (rev 4583)
@@ -50,7 +50,7 @@
 enum {
 	/** The Application Programming Interface (API) version, incremented
 	 * whenever any plugin data types are modified or appended to. */
-	GEANY_API_VERSION = 171,
+	GEANY_API_VERSION = 172,
 
 	/** The Application Binary Interface (ABI) version, incremented whenever
 	 * existing fields in the plugin data types have to be changed or reordered. */
@@ -295,9 +295,9 @@
 typedef struct SciFuncs
 {
 	/** @deprecated Use @c scintilla_send_message() instead. */
-	long int (*send_message) (struct _ScintillaObject *sci, unsigned int iMessage,
+	long int (*sci_send_message) (struct _ScintillaObject *sci, unsigned int iMessage,
 			long unsigned int wParam, long int lParam);
-	void	(*send_command) (struct _ScintillaObject *sci, gint cmd);
+	void	(*sci_send_command) (struct _ScintillaObject *sci, gint cmd);
 
 	void	(*sci_start_undo_action) (struct _ScintillaObject *sci);
 	void	(*sci_end_undo_action) (struct _ScintillaObject *sci);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list