summaryrefslogtreecommitdiff
path: root/src/editor.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-03-11 14:05:58 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-03-11 14:05:58 (GMT)
commitd1f5881c1f4ad53781fdadfe5ce6cac24cee3bab (patch)
treeb81348afa4b348590740d189f1b78dabb3ae254c /src/editor.c
parent9714ddda44f92f2939299c6b0aa203d549c32b0d (diff)
Updated the exportation dialog.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@239 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/editor.c')
-rw-r--r--src/editor.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/editor.c b/src/editor.c
index 757b0c9..d40f9ae 100644
--- a/src/editor.c
+++ b/src/editor.c
@@ -54,7 +54,6 @@
#include "debug/debugger.h"
//#include "dialogs/add_shellcode.h"
#include "dialogs/binparts.h"
-#include "dialogs/export.h"
#include "dialogs/plugins.h"
#include "gui/menus/menubar.h"
#include "gui/panels/panel.h"
@@ -99,9 +98,6 @@ static void mcb_binary_select_parts(GtkMenuItem *, GObject *);
/* Réagit avec le menu "Binaire -> Sélectionner les greffons...". */
static void mcb_binary_select_plugins(GtkMenuItem *, GObject *);
-/* Réagit au menu "Binaire -> Exporter...". */
-static void mcb_binary_export(GtkMenuItem *, GObject *);
-
/* Réagit avec le menu "Débogage -> Démarrer". */
void mcb_debug_start(GtkCheckMenuItem *, gpointer);
@@ -331,13 +327,6 @@ GtkWidget *create_editor(void)
submenuitem = qck_create_menu_item(NULL, NULL, _("Select plugins..."), G_CALLBACK(mcb_binary_select_plugins), ref);
gtk_container_add(GTK_CONTAINER(menubar), submenuitem);
- submenuitem = qck_create_menu_separator();
- gtk_container_add(GTK_CONTAINER(menubar), submenuitem);
-
- submenuitem = qck_create_menu_item(ref, "mnu_binary_export", _("Export..."), G_CALLBACK(mcb_binary_export), ref);
- gtk_container_add(GTK_CONTAINER(menubar), submenuitem);
-
-
menuitem = gtk_menu_item_new_with_mnemonic(_("_Debug"));
gtk_widget_show(menuitem);
@@ -882,28 +871,6 @@ static void mcb_binary_select_plugins(GtkMenuItem *menuitem, GObject *ref)
}
-/******************************************************************************
-* *
-* Paramètres : menuitem = élément de menu sélectionné. *
-* ref = adresse de l'espace de référencement global. *
-* *
-* Description : Réagit au menu "Binaire -> Exporter...". *
-* *
-* Retour : - *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-static void mcb_binary_export(GtkMenuItem *menuitem, GObject *ref)
-{
- GOpenidaBinary *binary; /* Edition courante */
-
- binary = (GOpenidaBinary *)g_object_get_data(ref, "current_binary");
-
- run_export_assistant(binary, GTK_WINDOW(ref));
-
-}