SF.net SVN: geany: [1873] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Wed Sep 12 11:17:53 UTC 2007


Revision: 1873
          http://geany.svn.sourceforge.net/geany/?rev=1873&view=rev
Author:   ntrel
Date:     2007-09-12 04:17:53 -0700 (Wed, 12 Sep 2007)

Log Message:
-----------
Fix return type for document->open_files().
(Tidy up field name indentation).

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-09-11 19:41:38 UTC (rev 1872)
+++ trunk/ChangeLog	2007-09-12 11:17:53 UTC (rev 1873)
@@ -1,3 +1,10 @@
+2007-09-12  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
+
+ * src/plugindata.h:
+   Fix return type for document->open_files().
+   (Tidy up field name indentation).
+
+
 2007-09-11  Enrico Tröger  <enrico.troeger at uvena.de>
 
  * src/callbacks.c: HTML manual is called Manual.html on Windows, so

Modified: trunk/src/plugindata.h
===================================================================
--- trunk/src/plugindata.h	2007-09-11 19:41:38 UTC (rev 1872)
+++ trunk/src/plugindata.h	2007-09-12 11:17:53 UTC (rev 1873)
@@ -172,10 +172,10 @@
 {
 	gint	(*new_file) (const gchar *filename, struct filetype *ft, const gchar *text);
 	gint	(*get_cur_idx) ();
-	struct document*	(*get_current) ();
+	struct document* (*get_current) ();
 	gboolean (*save_file)(gint idx, gboolean force);
-	gboolean (*open_file)(const gchar *locale_filename, gboolean readonly,
-		struct filetype *ft, const gchar *forced_enc);
+	gint	(*open_file)(const gchar *locale_filename, gboolean readonly,
+			struct filetype *ft, const gchar *forced_enc);
 	void	(*open_files)(const GSList *filenames, gboolean readonly, struct filetype *ft,
 			const gchar *forced_enc);
 	gboolean (*remove)(guint page_num);
@@ -187,8 +187,8 @@
 
 typedef struct ScintillaFuncs
 {
-	long int	(*send_message) (struct _ScintillaObject* sci, unsigned int iMessage,
-		long unsigned int wParam, long int lParam);
+	long int (*send_message) (struct _ScintillaObject* sci, unsigned int iMessage,
+			long unsigned int wParam, long int lParam);
 	void	(*send_command) (struct _ScintillaObject* sci, gint cmd);
 
 	void	(*start_undo_action) (struct _ScintillaObject* sci);
@@ -215,7 +215,7 @@
 	gchar*	(*get_line) (struct _ScintillaObject* sci, gint line_num);
 	gint	(*get_line_length) (struct _ScintillaObject* sci, gint line);
 	gint	(*get_line_count) (struct _ScintillaObject* sci);
-	gboolean	(*get_line_is_visible) (struct _ScintillaObject* sci, gint line);
+	gboolean (*get_line_is_visible) (struct _ScintillaObject* sci, gint line);
 	void	(*ensure_line_is_visible) (struct _ScintillaObject* sci, gint line);
 	void	(*scroll_caret) (struct _ScintillaObject* sci);
 	gint	(*find_bracematch) (struct _ScintillaObject* sci, gint pos);


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