summaryrefslogtreecommitdiff
path: root/docs/dnd_internals.txt
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2009-10-14 03:02:14 +0200
committerJavier Jardón <jjardon@gnome.org>2009-10-14 03:13:52 +0200
commit57bc51371396af839859293468ba6004adfebcad (patch)
treed945485785647f0e7f2a43ac59c05c76ef995634 /docs/dnd_internals.txt
parentfb63e32a9d54854ea126fb5e772b412df9bbaef8 (diff)
downloadgtk+-57bc51371396af839859293468ba6004adfebcad.tar.gz
Use g_object_ref/unref instead deprecated gdk_*_ref/unref functions
Substitute deprecated reference counting functions for g_object_ref/unref in documentation and in internal code https://bugzilla.gnome.org/show_bug.cgi?id=598217
Diffstat (limited to 'docs/dnd_internals.txt')
-rw-r--r--docs/dnd_internals.txt2
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/dnd_internals.txt b/docs/dnd_internals.txt
index 62312ef0fa..fc5afcecc0 100644
--- a/docs/dnd_internals.txt
+++ b/docs/dnd_internals.txt
@@ -62,8 +62,6 @@ used by anything other than the DND code in GTK+.
/* Drag and Drop */
GdkDragContext * gdk_drag_context_new (void);
-void gdk_drag_context_ref (GdkDragContext *context);
-void gdk_drag_context_unref (GdkDragContext *context);
These create and refcount GdkDragContexts in a
straightforward manner.