summaryrefslogtreecommitdiff
path: root/src/gui/editem-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-07-22 21:38:30 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-07-22 21:38:30 (GMT)
commit250d2773aa372434b721a4e72bff5da7b4f3fb4e (patch)
tree3bbb6b75e1cc53c5aa189489e416e3dd92bb79c2 /src/gui/editem-int.h
parentdb863244b804cbf4c06399f7c6f8241d91c9ee9b (diff)
Used in the right way some features of GLib classes in the GUI code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@382 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gui/editem-int.h')
-rw-r--r--src/gui/editem-int.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/editem-int.h b/src/gui/editem-int.h
index a895a45..eafac04 100644
--- a/src/gui/editem-int.h
+++ b/src/gui/editem-int.h
@@ -61,12 +61,6 @@ struct _GEditorItem
const char *name; /* Nom du panneau */
GtkWidget *widget; /* Composant GTK d'affichage */
- update_item_binary_fc update_binary; /* Changement de binaire */
- update_item_view_fc update_view; /* Rechargement dû à une vue */
- update_item_view_fc update_content; /* Rechargement dû à un contenu*/
- focus_addr_fc focus_addr; /* Prête attention à une addr. */
- update_project_fc update_project; /* Actualisation des binaires */
-
};
@@ -75,6 +69,12 @@ struct _GEditorItemClass
{
GObjectClass parent; /* A laisser en premier */
+ update_item_binary_fc update_binary; /* Changement de binaire */
+ update_item_view_fc update_view; /* Rechargement dû à une vue */
+ update_item_view_fc update_content; /* Rechargement dû à un contenu*/
+ focus_addr_fc focus_addr; /* Prête attention à une addr. */
+ update_project_fc update_project; /* Actualisation des binaires */
+
};