--- a/pidgin/gtkdnd-hints.h Mon Feb 10 00:56:22 2014 +0530 +++ b/pidgin/gtkdnd-hints.h Mon Feb 10 01:40:39 2014 +0530 @@ -30,7 +30,7 @@ #include <gtk/gtk.h> /** - * DndHintWindowId: + * PidginDndHintWindowId: * @HINT_ARROW_UP: Up arrow. * @HINT_ARROW_DOWN: Down arrow. * @HINT_ARROW_LEFT: Left arrow. @@ -45,10 +45,10 @@ HINT_ARROW_LEFT, HINT_ARROW_RIGHT -} DndHintWindowId; +} PidginDndHintWindowId; /** - * DndHintPosition: + * PidginDndHintPosition: * @HINT_POSITION_RIGHT: Position to the right of a tab. * @HINT_POSITION_LEFT: Position to the left of a tab. * @HINT_POSITION_TOP: Position above a tab. @@ -65,37 +65,37 @@ HINT_POSITION_BOTTOM, HINT_POSITION_CENTER -} DndHintPosition; +} PidginDndHintPosition; G_BEGIN_DECLS /** - * dnd_hints_show: + * pidgin_dnd_hints_show: * @id: The ID of the hint to show. * @x: The X location to show it at. * @y: The Y location to show it at. * * Shows a drag-and-drop hint at the specified location. */ -void dnd_hints_show(DndHintWindowId id, gint x, gint y); +void pidgin_dnd_hints_show(PidginDndHintWindowId id, gint x, gint y); /** - * dnd_hints_hide: + * pidgin_dnd_hints_hide: * @id: The ID of the hint to hide. * * Hides the specified drag-and-drop hint. */ -void dnd_hints_hide(DndHintWindowId id); +void pidgin_dnd_hints_hide(PidginDndHintWindowId id); /** - * dnd_hints_hide_all: + * pidgin_pidgin_dnd_hints_hide_all: * * Hides all drag-and-drop hints. */ -void dnd_hints_hide_all(void); +void pidgin_pidgin_dnd_hints_hide_all(void); /** - * dnd_hints_show_relative: + * pidgin_pidgin_dnd_hints_show_relative: * @id: The ID of the hint. * @widget: The widget that the hint is relative to. * @horiz: The horizontal relative position. @@ -103,8 +103,8 @@ * * Shows a drag-and-drop hint relative to a widget. */ -void dnd_hints_show_relative(DndHintWindowId id, GtkWidget *widget, - DndHintPosition horiz, DndHintPosition vert); +void pidgin_pidgin_dnd_hints_show_relative(PidginDndHintWindowId id, GtkWidget *widget, + PidginDndHintPosition horiz, PidginDndHintPosition vert); G_END_DECLS