summaryrefslogtreecommitdiff
path: root/gtk/gtkshow.c
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2008-05-26 09:51:48 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-05-26 09:51:48 +0000
commit27dbd9a425d5b5a9bb34648acf6dd6ca0d8dea90 (patch)
treedb189b1c0acc9638893b703cc62fe0eb4e589d8f /gtk/gtkshow.c
parent6fb474f223ba71938eb4131662e99f9a52bb28df (diff)
downloadgtk+-27dbd9a425d5b5a9bb34648acf6dd6ca0d8dea90.tar.gz
include "gdk/gdk.h" instead of "gdk/gdkscreen.h"
2008-05-26 Michael Natterer <mitch@imendio.com> * gtk/gtkshow.h: include "gdk/gdk.h" instead of "gdk/gdkscreen.h" * gtk/gtkshow.c: remove inclusion of single files from gdk/ Removed trailing whitespace in both files. svn path=/trunk/; revision=20176
Diffstat (limited to 'gtk/gtkshow.c')
-rw-r--r--gtk/gtkshow.c22
1 files changed, 10 insertions, 12 deletions
diff --git a/gtk/gtkshow.c b/gtk/gtkshow.c
index 949f67b6e6..eef90d2962 100644
--- a/gtk/gtkshow.c
+++ b/gtk/gtkshow.c
@@ -1,4 +1,4 @@
-/*
+/*
* GTK - The GIMP Toolkit
* Copyright (C) 2008 Jaap Haitsma <jaap@haitsma.org>
*
@@ -24,8 +24,6 @@
#include <glib.h>
#include <gio/gio.h>
-#include "gdk/gdkscreen.h"
-#include "gdk/gdkapplaunchcontext.h"
#include "gtkshow.h"
@@ -36,22 +34,22 @@
* gtk_show_uri:
* @screen: screen to show the uri on or %NULL for the default screen
* @uri: the uri to show
- * @timestamp: a timestamp to prevent focus stealing.
+ * @timestamp: a timestamp to prevent focus stealing.
* @error: a #GError that is returned in case of errors
*
- * This is a convenience function for launching the default application
+ * This is a convenience function for launching the default application
* to show the uri. The uri must be of a form understood by GIO. Typical
- * examples are
+ * examples are
* <simplelist>
* <member><filename>file:///home/gnome/pict.jpg</filename></member>
* <member><filename>http://www.gnome.org</filename></member>
* <member><filename>mailto:me&commat;gnome.org</filename></member>
* </simplelist>
- * Ideally the timestamp is taken from the event triggering
- * the gtk_show_uri() call. If timestamp is not known you can take
+ * Ideally the timestamp is taken from the event triggering
+ * the gtk_show_uri() call. If timestamp is not known you can take
* %GDK_CURRENT_TIME.
*
- * This function can be used as a replacement for gnome_vfs_url_show()
+ * This function can be used as a replacement for gnome_vfs_url_show()
* and gnome_url_show().
*
* Returns: %TRUE on success, %FALSE on error.
@@ -59,9 +57,9 @@
* Since: 2.14
*/
gboolean
-gtk_show_uri (GdkScreen *screen,
- const gchar *uri,
- guint32 timestamp,
+gtk_show_uri (GdkScreen *screen,
+ const gchar *uri,
+ guint32 timestamp,
GError **error)
{
GdkAppLaunchContext *context;