summaryrefslogtreecommitdiff
path: root/src/gui/panels/symbols.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/panels/symbols.c')
-rw-r--r--src/gui/panels/symbols.c4
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)
{