summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-04-11 16:55:16 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-04-11 16:55:16 (GMT)
commit49468379e912806400c5874f8e359cb934516228 (patch)
treebf0c8d3b83410e687a3aaebfd622c4e2e29d682a /plugins
parent30258fa96ad48eed68924f259ec5464fc4fd8094 (diff)
Cleaned the code by removing all references to the old GtkTextBuffer usage.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@151 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'plugins')
-rw-r--r--plugins/stackvars/operand.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/stackvars/operand.c b/plugins/stackvars/operand.c
index 387f766..503a065 100644
--- a/plugins/stackvars/operand.c
+++ b/plugins/stackvars/operand.c
@@ -57,9 +57,6 @@ static void g_stack_var_operand_class_init(GStackVarOperandClass *);
/* Initialise l'instande d'un opérandes de substitution. */
static void g_stack_var_operand_init(GStackVarOperand *);
-/* Ajoute à un texte GTK le contenu d'un opérande. */
-static void g_stack_var_operand_add_to_gtk_buffer(const GStackVarOperand *, const GExeFormat *, AsmSyntax, GtkTextBuffer *, GtkTextIter *);
-
/* Indique le type défini pour un opérande de substitution pour variable de pile. */
@@ -102,7 +99,7 @@ static void g_stack_var_operand_init(GStackVarOperand *operand)
parent = G_CONTENT_EXPORTER(operand);
- parent->add_arch_to_gtk_buffer = (add_arch_to_gtk_buffer_fc)g_stack_var_operand_add_to_gtk_buffer;
+ //parent->add_arch_to_gtk_buffer = (add_arch_to_gtk_buffer_fc)g_stack_var_operand_add_to_gtk_buffer;
}
@@ -133,7 +130,7 @@ GArchOperand *g_stack_var_operand_new(const GBinRoutine *routine, const GX86ModR
}
-
+#if 0
/******************************************************************************
* *
* Paramètres : operand = opérande à transcrire. *
@@ -174,3 +171,4 @@ static void g_stack_var_operand_add_to_gtk_buffer(const GStackVarOperand *operan
"]", 1, RTT_HOOK);
}
+#endif