evolution r36955 - branches/kill-bonobo/e-util
- From: mbarnes svn gnome org
- To: svn-commits-list gnome org
- Subject: evolution r36955 - branches/kill-bonobo/e-util
- Date: Thu, 1 Jan 2009 18:07:02 +0000 (UTC)
Author: mbarnes
Date: Thu Jan 1 18:07:02 2009
New Revision: 36955
URL: http://svn.gnome.org/viewvc/evolution?rev=36955&view=rev
Log:
Implement GNOME Goal: RemoveGnomeOpenGnomeHelp
Modified:
branches/kill-bonobo/e-util/e-util.c
Modified: branches/kill-bonobo/e-util/e-util.c
==============================================================================
--- branches/kill-bonobo/e-util/e-util.c (original)
+++ branches/kill-bonobo/e-util/e-util.c Thu Jan 1 18:07:02 2009
@@ -38,7 +38,6 @@
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include <glib/gstdio.h>
-#include <libgnome/gnome-help.h>
#include <libgnome/gnome-init.h>
#ifdef G_OS_WIN32
@@ -106,11 +105,23 @@
e_display_help (GtkWindow *parent,
const gchar *link_id)
{
+ GString *uri;
GtkWidget *dialog;
+ GdkScreen *screen = NULL;
GError *error = NULL;
+ guint32 timestamp;
- if (gnome_help_display ("evolution.xml", link_id, &error))
- return;
+ uri = g_string_new ("ghelp:" PACKAGE);
+ timestamp = gtk_get_current_event_time ();
+
+ if (parent != NULL)
+ screen = gtk_widget_get_screen (GTK_WIDGET (parent));
+
+ if (link_id != NULL)
+ g_string_append_printf (uri, "?%s", link_id);
+
+ if (gtk_show_uri (screen, uri->str, timestamp, &error))
+ goto exit;
dialog = gtk_message_dialog_new_with_markup (
parent, GTK_DIALOG_DESTROY_WITH_PARENT,
@@ -125,6 +136,9 @@
gtk_widget_destroy (dialog);
g_error_free (error);
+
+exit:
+ g_string_free (uri, TRUE);
}
/**
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]