summaryrefslogtreecommitdiff
path: root/src/analysis
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
parent332da5c182e576400a0b1e2ae62c2b990a5e52f1 (diff)
Typo.
Diffstat (limited to 'src/analysis')
-rw-r--r--src/analysis/project.c4
-rw-r--r--src/analysis/project.h2
2 files changed, 3 insertions, 3 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));
diff --git a/src/analysis/project.h b/src/analysis/project.h
index 7ae3c03..34dd976 100644
--- a/src/analysis/project.h
+++ b/src/analysis/project.h
@@ -143,7 +143,7 @@ GStudyProject *_get_current_study_project(GStudyProject *);
#define get_current_project() _get_current_study_project(NULL)
/* Fournit le gestionnaire des projets connus. */
-GtkRecentManager *get_projects_manager(void);
+GtkRecentManager *get_project_manager(void);
/* Place un projet au sommet de la pile des projets récents. */
void push_project_into_recent_list(const GStudyProject *);