summaryrefslogtreecommitdiff
path: root/src/arch/instruction-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-11-05 19:45:08 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-11-05 19:45:08 (GMT)
commitc35d5d4ce62b812ec0aa4a5ebbacb84cd0901d53 (patch)
treeca0262ce4f0a24bdfbc1b9a4ffa1bbb202d47820 /src/arch/instruction-int.h
parentf5df6496fa50927d3d274c939a888afde652b7ad (diff)
Removed the old interface for rendering lines.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@278 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/instruction-int.h')
-rw-r--r--src/arch/instruction-int.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/arch/instruction-int.h b/src/arch/instruction-int.h
index 83a2eef..e323d6c 100644
--- a/src/arch/instruction-int.h
+++ b/src/arch/instruction-int.h
@@ -28,7 +28,6 @@
#include "archbase.h"
#include "instruction.h"
#include "translate.h"
-#include "../analysis/exporter-int.h"
#include "../common/dllist.h"
@@ -49,7 +48,7 @@ typedef bool (* is_instruction_return_fc) (const GArchInstruction *);
/* Définition générique d'une instruction d'architecture (instance) */
struct _GArchInstruction
{
- GContentExporter parent; /* A laisser en premier */
+ GObject parent; /* A laisser en premier */
DL_LIST_ITEM(flow); /* Maillon de liste chaînée */
@@ -79,7 +78,7 @@ struct _GArchInstruction
/* Définition générique d'une instruction d'architecture (classe) */
struct _GArchInstructionClass
{
- GContentExporterClass parent; /* A laisser en premier */
+ GObjectClass parent; /* A laisser en premier */
};