finch/libgnt/gntclipboard.h

branch
release-2.2.2
changeset 20198
90ae53934c28
parent 19859
71d37b57eff2
child 35379
ea1a0327001e
child 35393
00f876b129bc
--- a/finch/libgnt/gntclipboard.h	Fri Oct 19 16:58:37 2007 +0000
+++ b/finch/libgnt/gntclipboard.h	Fri Oct 19 17:06:53 2007 +0000
@@ -60,26 +60,27 @@
 G_BEGIN_DECLS
 
 /**
- * 
- *
- * @return
+ * @return GType for GntClipboard.
  */
 GType gnt_clipboard_get_gtype(void);
 
 /**
- * 
- * @param clip
+ * Get the current text from the clipboard.
  *
- * @return
+ * @param clip  The clipboard.
+ *
+ * @return  A copy of the string in the clipboard. The caller should free the
+ *          returned value.
  */
 gchar * gnt_clipboard_get_string(GntClipboard *clip);
 
 /**
- * 
- * @param clip
- * @param string
+ * Set the text in the clipboard.
+ *
+ * @param clip     The clipboard.
+ * @param string   New string for the clipboard.
  */
-void gnt_clipboard_set_string(GntClipboard *clip, gchar *string);
+void gnt_clipboard_set_string(GntClipboard *clip, const gchar *string);
 
 G_END_DECLS
 

mercurial