summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2004-08-01 23:30:54 +0000
committerJose Antonio Ortega Ruiz <jao@gnu.org>2004-08-01 23:30:54 +0000
commit99e0f5a0aa06befc7dd0bb2d7693eed200ac612e (patch)
tree727ffd63f1be24735d3455dc820c3b3633a96b5f
parenta7f65ed2705b64a8930970405d1ae36d51bb32b0 (diff)
downloadmdk-99e0f5a0aa06befc7dd0bb2d7693eed200ac612e.tar.gz
mdk-99e0f5a0aa06befc7dd0bb2d7693eed200ac612e.tar.bz2
(on_external_programs_activate):
new-style handling of the external programs dialog.
-rw-r--r--mixgtk/mixgtk_cmd_dispatcher.c27
1 files changed, 10 insertions, 17 deletions
diff --git a/mixgtk/mixgtk_cmd_dispatcher.c b/mixgtk/mixgtk_cmd_dispatcher.c
index a941627..1e9ccd7 100644
--- a/mixgtk/mixgtk_cmd_dispatcher.c
+++ b/mixgtk/mixgtk_cmd_dispatcher.c
@@ -1,7 +1,7 @@
/* -*-c-*- -------------- mixgtk_cmd_dispatcher.c :
* Implementation of the functions declared in mixgtk_cmd_dispatcher.h
* ------------------------------------------------------------------
- * $Id: mixgtk_cmd_dispatcher.c,v 1.22 2004/08/01 21:44:34 jao Exp $
+ * $Id: mixgtk_cmd_dispatcher.c,v 1.23 2004/08/01 23:30:54 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc.
*
@@ -273,23 +273,16 @@ on_external_programs_activate ()
mix_vm_cmd_dispatcher_get_assembler
(dis_data_.dispatcher));
gtk_widget_show (ext_dlg_);
-}
-
-void
-on_extern_cancel_button_clicked ()
-{
- gtk_widget_hide (ext_dlg_);
-}
+ if (gtk_dialog_run (GTK_DIALOG (ext_dlg_)) == GTK_RESPONSE_OK)
+ {
+ const gchar *value = gtk_entry_get_text (GTK_ENTRY (ed_entry_));
+ mix_vm_cmd_dispatcher_set_editor (dis_data_.dispatcher, value);
+ mixgtk_config_update (EDITOR_KEY_, value);
+ value = gtk_entry_get_text (GTK_ENTRY (asm_entry_));
+ mix_vm_cmd_dispatcher_set_assembler (dis_data_.dispatcher, value);
+ mixgtk_config_update (MIXASM_KEY_, value);
+ }
-void
-on_extern_ok_button_clicked ()
-{
- const gchar *value = gtk_entry_get_text (GTK_ENTRY (ed_entry_));
- mix_vm_cmd_dispatcher_set_editor (dis_data_.dispatcher, value);
- mixgtk_config_update (EDITOR_KEY_, value);
- value = gtk_entry_get_text (GTK_ENTRY (asm_entry_));
- mix_vm_cmd_dispatcher_set_assembler (dis_data_.dispatcher, value);
- mixgtk_config_update (MIXASM_KEY_, value);
gtk_widget_hide (ext_dlg_);
}