diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-10-12 07:28:19 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-10-12 07:28:19 (GMT) |
commit | c7a14e50bd002e3922969e9bae7816753aefb073 (patch) | |
tree | cd098d2f92880705810dfdc353dad6ad1412b2c2 /src/gui/panels | |
parent | 4a51f37982c2d5d358971e947d05786b939af88e (diff) |
Reorganized types definitions.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@267 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gui/panels')
-rw-r--r-- | src/gui/panels/symbols.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/panels/symbols.c b/src/gui/panels/symbols.c index 63864d3..c51b2d1 100644 --- a/src/gui/panels/symbols.c +++ b/src/gui/panels/symbols.c @@ -542,7 +542,7 @@ static GtkTreeIter ensure_symbol_node_exist(GtkTreeStore *store, GtkTreeIter *pa static bool find_parent_for_routine(GtkTreeStore *store, const GBinRoutine *routine, GtkTreeIter *parent) { - GOpenidaType *namespace; /* Espace d'appartenance */ + GDataType *namespace; /* Espace d'appartenance */ char *string; /* Conversion en chaîne */ char *iter; /* Boucle de parcours */ char *token; /* Partie de texte isolée */ @@ -551,7 +551,7 @@ static bool find_parent_for_routine(GtkTreeStore *store, const GBinRoutine *rout namespace = g_binary_routine_get_namespace(routine); if (namespace == NULL) return false; - string = g_openida_type_to_string(namespace); + string = g_data_type_to_string(namespace); for (iter = string; ; iter = NULL) { |