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 | 41d257b2ba4f3a995acdaa3b57bbe991e939d0e5 (patch) | |
tree | 34fc4d4d05b9888210b6c0fd24a95420522bc3d4 | |
parent | fdbcafeb03754c33b24a48218cfbf8bf28d8c8dc (diff) |
added (commentet) show log button
git-svn-id: https://svn.helsinki.at/rhimport/trunk@55 7c65635b-ec39-4f67-a626-873dbafdd612
-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; |