[geany/geany] 727903: project: change GeanyProject::file_patterns type to GStrv

Thomas Martitz git-noreply at xxxxx
Tue Feb 16 05:52:03 UTC 2016


Branch:      refs/heads/master
Author:      Thomas Martitz <kugel at rockbox.org>
Committer:   Thomas Martitz <kugel at rockbox.org>
Date:        Tue, 16 Feb 2016 05:52:03 UTC
Commit:      7279037dd697143881071a3c5cd467ed0a96b9a4
             https://github.com/geany/geany/commit/7279037dd697143881071a3c5cd467ed0a96b9a4

Log Message:
-----------
project: change GeanyProject::file_patterns type to GStrv

GStrv is identical to gchar ** (as per typedef) but a bit more gir friendly.
This does not break the ABI or API.


Modified Paths:
--------------
    src/project.h

Modified: src/project.h
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -40,7 +40,7 @@ typedef struct GeanyProject
 	/** Identifier whether it is a pure Geany project or modified/extended
 	 * by a plugin. */
 	gint type;
-	gchar **file_patterns;	/**< Array of filename extension patterns. */
+	GStrv file_patterns;	/**< Array of filename extension patterns. */
 
 	struct GeanyProjectPrivate	*priv;	/* must be last, append fields before this item */
 }



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list