[gnome-media] gst-properties: fix the build introduce by previous commits
- From: Marc-Andre Lureau <malureau src gnome org>
- To: svn-commits-list gnome org
- Subject: [gnome-media] gst-properties: fix the build introduce by previous commits
- Date: Thu, 23 Apr 2009 11:24:13 -0400 (EDT)
commit 3a491c59106a173c6dc6752a2be15f3e3afa6220
Author: Marc-André Lureau <marc-andre lureau nokia com>
Date: Thu Apr 23 18:17:19 2009 +0300
gst-properties: fix the build introduce by previous commits
remove gnome_help_display() as well.
---
gstreamer-properties/gstreamer-properties.c | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/gstreamer-properties/gstreamer-properties.c b/gstreamer-properties/gstreamer-properties.c
index fdbc612..5d97e5c 100644
--- a/gstreamer-properties/gstreamer-properties.c
+++ b/gstreamer-properties/gstreamer-properties.c
@@ -97,10 +97,20 @@ gst_properties_gconf_set_string (const gchar * key, const gchar * value)
static void
dialog_response (GtkDialog * widget, gint response_id, GladeXML * dialog)
{
+ GError *error = NULL;
+
if (response_id == GTK_RESPONSE_HELP)
- gnome_help_display ("gstreamer-properties.xml", NULL, NULL);
+ gtk_show_uri (gtk_widget_get_screen (GTK_WIDGET (dialog)),
+ "ghelp:gstreamer-properties",
+ gtk_get_current_event_time (),
+ &error);
else
gtk_main_quit ();
+
+ if (error) {
+ g_warning ("%s() error: %s", G_STRFUNC, error->message);
+ g_error_free (error);
+ }
}
static void
@@ -629,7 +639,7 @@ main (int argc, char **argv)
textdomain (GETTEXT_PACKAGE);
ctx = g_option_context_new ("gstreamer-properties");
- g_option_context_add_group (ctx, gtk_get_option_group ());
+ g_option_context_add_group (ctx, gtk_get_option_group (TRUE));
g_option_context_add_group (ctx, gst_init_get_option_group ());
if (! g_option_context_parse (ctx, &argc, &argv, &error)) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]