diff options
author | Jason Leach <jasonleach@usa.net> | 2000-12-26 21:05:05 +0800 |
---|---|---|
committer | Jacob Leach <jleach@src.gnome.org> | 2000-12-26 21:05:05 +0800 |
commit | 760c9012696de63361347e92ff8ae1d7eb009050 (patch) | |
tree | 1bc681b17a349d4b14841ca5628e545f476b062f /shell/e-shell-view-menu.c | |
parent | 68186009b294f8f66d159ce8db2228ed6bba8599 (diff) | |
download | gsoc2013-evolution-760c9012696de63361347e92ff8ae1d7eb009050.tar.gz gsoc2013-evolution-760c9012696de63361347e92ff8ae1d7eb009050.tar.zst gsoc2013-evolution-760c9012696de63361347e92ff8ae1d7eb009050.zip |
Fix a crash when the user tries to "Submit bug report" but doesn't have
2000-12-23 Jason Leach <jasonleach@usa.net>
* e-shell-view-menu.c (command_run_bugbuddy): Fix a crash when
the user tries to "Submit bug report" but doesn't have
bug-buddy installed. Bug #633.
2000-12-23 Jason Leach <jasonleach@usa.net>
* e-setup.c (copy_default_stuff): Make the "Evolution
installation" dialog resizable. Bug #742.
(check_evolution_directory): Here too.
svn path=/trunk/; revision=7174
Diffstat (limited to 'shell/e-shell-view-menu.c')
-rw-r--r-- | shell/e-shell-view-menu.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 0c3deb41a2..9dd6deb468 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -108,15 +108,12 @@ command_run_bugbuddy (BonoboUIComponent *uih, }; args[0] = gnome_is_program_in_path ("bug-buddy"); if (!args[0]) { - /* you might have to call gnome_dialog_run() on the - * dialog returned here, I don't remember... - */ gnome_error_dialog (_("Bug buddy was not found in your $PATH.")); + return; } pid = gnome_execute_async (NULL, 4, args); g_free (args[0]); if (pid == -1) { - /* same as above */ gnome_error_dialog (_("Bug buddy could not be run.")); } } |