[geany/geany-plugins] b3ef14: Autoclose: Trying to fix nightly builds cause by an unknown Scintilla reference

Frank Lanitz git-noreply at xxxxx
Sat Jan 18 11:55:23 UTC 2014


Branch:      refs/heads/master
Author:      Frank Lanitz <frank at frank.uvena.de>
Committer:   Frank Lanitz <frank at frank.uvena.de>
Date:        Sat, 18 Jan 2014 11:55:23 UTC
Commit:      b3ef1436d9a9060a984d981def31027244b1d699
             https://github.com/geany/geany-plugins/commit/b3ef1436d9a9060a984d981def31027244b1d699

Log Message:
-----------
Autoclose: Trying to fix nightly builds cause by an unknown Scintilla reference


Modified Paths:
--------------
    autoclose/src/autoclose.c

Modified: autoclose/src/autoclose.c
3 files changed, 1 insertions(+), 2 deletions(-)
===================================================================
@@ -773,7 +773,7 @@ struct_semicolon(
 }
 
 static void
-on_sci_notify(GObject *obj, gint scn, SCNotification *nt, gpointer user_data)
+on_sci_notify(ScintillaObject *sci, gint scn, SCNotification *nt, gpointer user_data)
 {
 	AutocloseUserData *data = user_data;
 
@@ -781,7 +781,6 @@ struct_semicolon(
 		return;
 	g_return_if_fail(data);
 
-	ScintillaObject *sci = SCINTILLA(obj);
 	/* reset jump_on_tab state when user clicked away */
 	gboolean updated_sel  = nt->updated & SC_UPDATE_SELECTION;
 	gboolean updated_text = nt->updated & SC_UPDATE_CONTENT;



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