summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-02-23 22:56:59 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-02-23 22:56:59 (GMT)
commita5cd2e6519456f49a0f0d9d76dfac0ff89d8bbb1 (patch)
treecc5c0d06836f132ba559eacf4323ce56b67e9d47 /src/gui
parent08f3cc8d6262c9b5412a008c6210e88cd840da85 (diff)
Fixed a bug: do not close the connection after the initial handshake.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@478 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/menus/project.c1
-rw-r--r--src/gui/panels/bookmarks.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/menus/project.c b/src/gui/menus/project.c
index 5e86c0f..caf3f64 100644
--- a/src/gui/menus/project.c
+++ b/src/gui/menus/project.c
@@ -306,7 +306,6 @@ static void mcb_project_add_binary_file(GtkMenuItem *menuitem, GMenuBar *bar)
g_signal_connect(binary, "disassembly-done",
G_CALLBACK(g_study_project_add_loaded_binary), get_current_project());
g_loaded_binary_analyse(binary);
- g_loaded_binary_connect(binary);
}
g_free(filename);
diff --git a/src/gui/panels/bookmarks.c b/src/gui/panels/bookmarks.c
index 99c1673..052bf5a 100644
--- a/src/gui/panels/bookmarks.c
+++ b/src/gui/panels/bookmarks.c
@@ -554,7 +554,7 @@ static void reload_bookmarks_into_treeview(GBookmarksPanel *panel, GLoadedBinary
* Paramètres : collec = collection dont le contenu vient de changer. *
* action = type de modification notifiée par la collection. *
* bookmark = élément en cause dans le changement survenu. *
-* pane = structure contenant les informations maîtresses. *
+* panel = structure contenant les informations maîtresses. *
* *
* Description : Met à jour une collection suite à une modification. *
* *