summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2007-07-12 03:23:42 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2007-07-12 03:23:42 +0000
commit11eba86f2af3a7c514ed92501ea0faf477d8ab65 (patch)
tree88a34848e50035b133063aa10589e6c269d43c02
parent37b454c5cc0aad43bc1744aee8d244b450ecb46b (diff)
downloadgtk+-11eba86f2af3a7c514ed92501ea0faf477d8ab65.tar.gz
Add docs
svn path=/trunk/; revision=18454
-rw-r--r--ChangeLog11
-rw-r--r--gtk/gtkclipboard.c13
2 files changed, 23 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f8f3b4baa4..9e495921eb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
2007-07-11 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkclipboard.c: Add documentation.
+
+2007-07-11 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkcelleditable.c:
+ * gtk/gtkcellrenderer.c:
+ * gtk/gtkcellrenderercombo.c:
+ * gtk/gtkcellrenderertext.c: Add more documentation.
+
+2007-07-11 Matthias Clasen <mclasen@redhat.com>
+
* gtk/gtktreeview.c:
* gtk/gtktoolitem.[hc]: Make parameter naming consistent.
diff --git a/gtk/gtkclipboard.c b/gtk/gtkclipboard.c
index ec8ad9d06a..920aad923a 100644
--- a/gtk/gtkclipboard.c
+++ b/gtk/gtkclipboard.c
@@ -167,6 +167,17 @@ gtk_clipboard_class_init (GtkClipboardClass *class)
class->owner_change = gtk_clipboard_owner_change;
+ /**
+ * GtkClipboard::owner-change:
+ * @clipboard: the #GtkClipboard on which the signal is emitted
+ * @event: the @GdkEventOwnerChange event
+ *
+ * The ::owner-change signal is emitted when GTK+ receives an
+ * event that indicates that the ownership of the selection
+ * associated with @clipboard has changed.
+ *
+ * Since: 2.6
+ */
clipboard_signals[OWNER_CHANGE] =
g_signal_new (I_("owner_change"),
G_TYPE_FROM_CLASS (gobject_class),
@@ -1726,7 +1737,7 @@ gtk_clipboard_wait_is_target_available (GtkClipboard *clipboard,
* _gtk_clipboard_handle_event:
* @event: a owner change event
*
- * Emits the ::owner_change signal on the appropriate @clipboard.
+ * Emits the #GtkClipboard::owner-change signal on the appropriate @clipboard.
*
* Since: 2.6
**/