summaryrefslogtreecommitdiff
path: root/src/gui/editem.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-01-30 02:19:38 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-01-30 02:19:38 (GMT)
commiteacb69625d51707ac0a158815a53f71fb70968ce (patch)
tree8d14e34639f80a0955529604d9c0d3ccae4d7dde /src/gui/editem.c
parent7bcec72d69c5350678ed6350636687c3c29bbc61 (diff)
Provided a new working Project menu.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@230 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gui/editem.c')
-rw-r--r--src/gui/editem.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/gui/editem.c b/src/gui/editem.c
index 0516f4d..18102f4 100644
--- a/src/gui/editem.c
+++ b/src/gui/editem.c
@@ -226,3 +226,26 @@ void change_editor_items_current_view(GObject *ref, GtkViewPanel *view)
iter->update_view(iter, view);
}
+
+
+/******************************************************************************
+* *
+* Paramètres : project = projet concerné par l'évolution. *
+* *
+* Description : Lance une actualisation relative à l'étendue du projet. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+void update_project_area(GStudyProject *project)
+{
+ GEditorItem *iter; /* Boucle de parcours */
+
+ editem_list_for_each(iter, _editem_list)
+ if (iter->update_project != NULL)
+ iter->update_project(iter, project);
+
+}