summaryrefslogtreecommitdiff
path: root/src/analysis
diff options
context:
space:
mode:
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 *);