From b27e8722dedfb3ace06280db985347de60a3906f Mon Sep 17 00:00:00 2001 From: Cyrille Bagard Date: Thu, 3 May 2018 16:50:43 +0200 Subject: Deleted the obsolete "disassembly-done" signal for loaded binaries. --- plugins/pychrysalide/analysis/loaded.c | 2 +- src/analysis/binary.c | 12 ------------ 2 files changed, 1 insertion(+), 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); - } -- cgit v0.11.2-87-g4458