summaryrefslogtreecommitdiff
path: root/src/analysis/project.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-11-20 21:48:30 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-11-20 21:48:30 (GMT)
commita6b32777986261e8254caeba49aeaaa0dd9d0c7f (patch)
tree2927d25d8c9181ee7d4ed6e86e412aa0bf6769c9 /src/analysis/project.c
parent332da5c182e576400a0b1e2ae62c2b990a5e52f1 (diff)
Typo.
Diffstat (limited to 'src/analysis/project.c')
-rw-r--r--src/analysis/project.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analysis/project.c b/src/analysis/project.c
index 9a10985..5fe7ab3 100644
--- a/src/analysis/project.c
+++ b/src/analysis/project.c
@@ -1082,7 +1082,7 @@ GStudyProject *_get_current_study_project(GStudyProject *project)
* *
******************************************************************************/
-GtkRecentManager *get_projects_manager(void)
+GtkRecentManager *get_project_manager(void)
{
static GtkRecentManager *result = NULL; /* Singleton à retourner */
@@ -1120,7 +1120,7 @@ void push_project_into_recent_list(const GStudyProject *project)
/* Constitution de la liste des projets récents */
- manager = get_projects_manager();
+ manager = get_project_manager();
qualified = (char *)calloc(strlen("file://") + strlen(project->filename) + 1, sizeof(char));