patch-src_ui_common_c 931 B

1234567891011121314151617181920212223242526
  1. $OpenBSD: patch-src_ui_common_c,v 1.4 2014/03/16 11:21:28 ajacoutot Exp $
  2. - Remove call to amide_gnome_help_display(), thus dropping the
  3. dependency on gnome-vfs2.
  4. --- src/ui_common.c.orig Wed Oct 3 23:49:10 2012
  5. +++ src/ui_common.c Sun Mar 16 10:31:14 2014
  6. @@ -963,7 +963,7 @@ void amide_unregister_all_windows(void) {
  7. void amide_call_help(const gchar * link_id) {
  8. -#ifndef OLD_WIN32_HACKS
  9. +#ifndef __OpenBSD__
  10. GError *error=NULL;
  11. amide_gnome_help_display(PACKAGE, link_id, &error);
  12. if (error != NULL) {
  13. @@ -972,7 +972,7 @@ void amide_call_help(const gchar * link_id) {
  14. }
  15. #else
  16. - g_warning("Help is unavailable in the Windows version. Please see the help documentation online at http://amide.sf.net, or in the AMIDE install folder");
  17. + g_warning("Help is unavailable in this version. Please see the help documentation online at http://amide.sf.net, or in the AMIDE install folder");
  18. #endif
  19. return;