diff options
author | Christian Pointner <equinox@helsinki.at> | 2010-04-22 16:28:59 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2010-04-22 16:28:59 (GMT) |
commit | 02f3f3b70ac57283fc6a19c1ccd57d1c948a7b7e (patch) | |
tree | 34fc4d4d05b9888210b6c0fd24a95420522bc3d4 /rhimport | |
parent | 3548109f4d60a8f1e8a2257e8823413352227b9b (diff) |
added (commentet) show log button
Diffstat (limited to 'rhimport')
-rwxr-xr-x | rhimport | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -282,14 +282,23 @@ sub start_import_gui() $l_status->set_label("Fehler beim Importieren"); $dialog = Gtk2::MessageDialog->new ($parent_window, 'destroy-with-parent', 'error', 'ok', "Fehler beim Importieren."); +# $dialog->add_button("Log anzeigen", 1); } else { $l_status->set_label(""); $dialog = Gtk2::MessageDialog->new ($parent_window, 'destroy-with-parent', 'info', 'ok', "Der Import wurde erfolgreich abgeschlossen!"); +# $dialog->add_button("Log anzeigen", 1); } - $dialog->run; + my $response = $dialog->run; $dialog->destroy; +# if($response == 1) { +# $dialog = Gtk2::MessageDialog->new ($parent_window, 'destroy-with-parent', +# 'info', 'ok', $log); +# $dialog->run; +# $dialog->destroy; +# } + $b_apply->set_sensitive(1); $b_close->set_sensitive(1); return $ret; |