summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/pychrysalide/analysis/loaded.c2
-rw-r--r--src/analysis/binary.c12
2 files changed, 1 insertions, 13 deletions
diff --git a/plugins/pychrysalide/analysis/loaded.c b/plugins/pychrysalide/analysis/loaded.c
index 328bf7b..0c94a88 100644
--- a/plugins/pychrysalide/analysis/loaded.c
+++ b/plugins/pychrysalide/analysis/loaded.c
@@ -153,7 +153,7 @@ PyTypeObject *get_python_loaded_content_type(void)
"analyze", py_loaded_content_analyze,
METH_NOARGS,
"analyze($self, /)\n--\n\nStart the analysis of the loaded binary and " \
- "send a \"disassembly-done\" signal when done."
+ "send an \"analyzed\" signal when done."
},
{
"analyze_and_wait", py_loaded_content_analyze_and_wait,
diff --git a/src/analysis/binary.c b/src/analysis/binary.c
index 5b97eb9..4bb9e43 100644
--- a/src/analysis/binary.c
+++ b/src/analysis/binary.c
@@ -98,10 +98,6 @@ struct _GLoadedBinaryClass
{
GObjectClass parent; /* A laisser en premier */
- /* Signaux */
-
- void (* disassembly_done) (GLoadedBinary *);
-
};
@@ -214,14 +210,6 @@ static void g_loaded_binary_class_init(GLoadedBinaryClass *klass)
object->dispose = (GObjectFinalizeFunc/* ! */)g_loaded_binary_dispose;
object->finalize = (GObjectFinalizeFunc)g_loaded_binary_finalize;
- g_signal_new("disassembly-done",
- G_TYPE_LOADED_BINARY,
- G_SIGNAL_RUN_LAST,
- G_STRUCT_OFFSET(GLoadedBinaryClass, disassembly_done),
- NULL, NULL,
- g_cclosure_marshal_VOID__VOID,
- G_TYPE_NONE, 0);
-
}