diff options
author | Michael Natterer <mitch@imendio.com> | 2008-06-28 17:02:20 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2008-06-28 17:02:20 +0000 |
commit | 5390e1e24c6e263bafa5279e346a261903768c14 (patch) | |
tree | df247837abb80aa58179e2f2c38259b210d4b1a7 | |
parent | ff7f25c9af80a7e39635e2150dfb9f76e717188e (diff) | |
download | gtk+-5390e1e24c6e263bafa5279e346a261903768c14.tar.gz |
properly indent the newly added GtkSelectionData accessors. Some newlines
2008-06-28 Michael Natterer <mitch@imendio.com>
* gtk/gtkselection.h: properly indent the newly added
GtkSelectionData accessors. Some newlines can't hurt either.
svn path=/trunk/; revision=20702
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gtk/gtkselection.h | 16 |
2 files changed, 13 insertions, 8 deletions
@@ -1,3 +1,8 @@ +2008-06-28 Michael Natterer <mitch@imendio.com> + + * gtk/gtkselection.h: properly indent the newly added + GtkSelectionData accessors. Some newlines can't hurt either. + 2008-06-27 Mikael Hallendal <micke@imendio.com> * gtk/gtkbox.c (gtk_box_pack): Removed accidental empty row. diff --git a/gtk/gtkselection.h b/gtk/gtkselection.h index 45219fdd47..d685b3a7f2 100644 --- a/gtk/gtkselection.h +++ b/gtk/gtkselection.h @@ -31,8 +31,6 @@ #ifndef __GTK_SELECTION_H__ #define __GTK_SELECTION_H__ - -#include <gdk/gdk.h> #include <gtk/gtkenums.h> #include <gtk/gtkwidget.h> #include <gtk/gtktextiter.h> @@ -148,12 +146,14 @@ gboolean gtk_selection_convert (GtkWidget *widget, GdkAtom selection, GdkAtom target, guint32 time_); -GdkAtom gtk_selection_data_get_target (GtkSelectionData *selection_data); -GdkAtom gtk_selection_data_get_data_type (GtkSelectionData *selection_data); -gint gtk_selection_data_get_format (GtkSelectionData *selection_data); -const guchar *gtk_selection_data_get_data (GtkSelectionData *selection_data, - guint *length); -GdkDisplay *gtk_selection_data_get_display (GtkSelectionData *selection_data); + +GdkAtom gtk_selection_data_get_target (GtkSelectionData *selection_data); +GdkAtom gtk_selection_data_get_data_type (GtkSelectionData *selection_data); +gint gtk_selection_data_get_format (GtkSelectionData *selection_data); +const guchar *gtk_selection_data_get_data (GtkSelectionData *selection_data, + guint *length); +GdkDisplay *gtk_selection_data_get_display (GtkSelectionData *selection_data); + void gtk_selection_data_set (GtkSelectionData *selection_data, GdkAtom type, gint format, |