Skip to content

Commit

Permalink
GeanyPrj: Fix project_type_filter signature
Browse files Browse the repository at this point in the history
  • Loading branch information
b4n committed Jul 8, 2012
1 parent d62c1fc commit b89ffae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion geanyprj/src/geanyprj.h
Expand Up @@ -68,7 +68,7 @@ extern GeanyData *geany_data;
extern GeanyFunctions *geany_functions;

extern const gchar *project_type_string[NEW_PROJECT_TYPE_SIZE];
extern void *project_type_filter[NEW_PROJECT_TYPE_SIZE];
gboolean (*project_type_filter[NEW_PROJECT_TYPE_SIZE]) (const gchar *);


/* project.c */
Expand Down
2 changes: 1 addition & 1 deletion geanyprj/src/project.c
Expand Up @@ -72,7 +72,7 @@ static gboolean project_filter_none(G_GNUC_UNUSED const gchar *file)
}


void *project_type_filter[NEW_PROJECT_TYPE_SIZE] = {
gboolean (*project_type_filter[NEW_PROJECT_TYPE_SIZE]) (const gchar *) = {
project_filter_all,
project_filter_c_cpp,
project_filter_c,
Expand Down

0 comments on commit b89ffae

Please sign in to comment.