diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2008-07-21 02:46:54 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-07-21 02:46:54 +0000 |
commit | d420020715103d209b49fbfd7e9b1e2781fd8512 (patch) | |
tree | 89478cef801ab219dfc4d3dfdfb4c85b05352d88 | |
parent | c0aacc7c4c268ff02995622476c6e45752849691 (diff) |
More doc fixes
svn path=/trunk/; revision=7225
-rw-r--r-- | gio/ChangeLog | 3 | ||||
-rw-r--r-- | gio/gioenums.h | 20 | ||||
-rw-r--r-- | gio/gmountoperation.c | 3 | ||||
-rw-r--r-- | gio/gvolumemonitor.c | 6 | ||||
-rw-r--r-- | gio/gvolumemonitor.h | 2 |
5 files changed, 20 insertions, 14 deletions
diff --git a/gio/ChangeLog b/gio/ChangeLog index 580f71067..3e273a779 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,5 +1,8 @@ 2008-07-20 Matthias Clasen <mclasen@redhat.com> + * gvolumemonitor.[hc]: + * gmountoperation.c: + * gioenums.h: * gdrive.c: * gvfs.c: * gmount.c: Documentation fixes diff --git a/gio/gioenums.h b/gio/gioenums.h index cab54a7d1..525bc6c4d 100644 --- a/gio/gioenums.h +++ b/gio/gioenums.h @@ -377,7 +377,6 @@ typedef enum { * #GAskPasswordFlags are used to request specific information from the * user, or to notify the user of their choices in an authentication * situation. - * **/ typedef enum { G_ASK_PASSWORD_NEED_PASSWORD = (1 << 0), @@ -408,12 +407,15 @@ typedef enum { /** * GMountOperationResult: - * @G_MOUNT_OPERATION_HANDLED: The request was fulfilled and the user specified data is now availible - * @G_MOUNT_OPERATION_ABORTED: The user requested the mount operation to be aborted - * @G_MOUNT_OPERATION_UNHANDLED: The request was unhandled (i.e. not implemented) + * @G_MOUNT_OPERATION_HANDLED: The request was fulfilled and the + * user specified data is now available + * @G_MOUNT_OPERATION_ABORTED: The user requested the mount operation + * to be aborted + * @G_MOUNT_OPERATION_UNHANDLED: The request was unhandled (i.e. not + * implemented) * - * #GMountOperationResult is returned as a result when a request for information - * is send by the mounting operation. + * #GMountOperationResult is returned as a result when a request for + * information is send by the mounting operation. **/ typedef enum { G_MOUNT_OPERATION_HANDLED, @@ -425,8 +427,10 @@ typedef enum { /** * GOutputStreamSpliceFlags: * @G_OUTPUT_STREAM_SPLICE_NONE: Do not close either stream. - * @G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE: Close the source stream after the splice. - * @G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET: Close the target stream after the splice. + * @G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE: Close the source stream after + * the splice. + * @G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET: Close the target stream after + * the splice. * * GOutputStreamSpliceFlags determine how streams should be spliced. **/ diff --git a/gio/gmountoperation.c b/gio/gmountoperation.c index d4b02bc8c..96f360c67 100644 --- a/gio/gmountoperation.c +++ b/gio/gmountoperation.c @@ -282,7 +282,7 @@ g_mount_operation_class_init (GMountOperationClass *klass) /** * GMountOperation::reply: * @op: a #GMountOperation. - * @abort: a boolean indicating %TRUE if the operation was aborted. + * @result: a #GMountOperationResult indicating how the request was handled * * Emitted when the user has replied to the mount operation. */ @@ -427,7 +427,6 @@ g_mount_operation_get_username (GMountOperation *op) * @username: input username. * * Sets the user name within @op to @username. - * **/ void g_mount_operation_set_username (GMountOperation *op, diff --git a/gio/gvolumemonitor.c b/gio/gvolumemonitor.c index 4c3aeea21..2e1944311 100644 --- a/gio/gvolumemonitor.c +++ b/gio/gvolumemonitor.c @@ -264,7 +264,7 @@ g_volume_monitor_init (GVolumeMonitor *monitor) * The returned list should be freed with g_list_free(), after * its elements have been unreffed with g_object_unref(). * - * Returns: a #GList of connected #GDrive<!-- -->s + * Returns: a #GList of connected #GDrive objects. **/ GList * g_volume_monitor_get_connected_drives (GVolumeMonitor *volume_monitor) @@ -287,7 +287,7 @@ g_volume_monitor_get_connected_drives (GVolumeMonitor *volume_monitor) * The returned list should be freed with g_list_free(), after * its elements have been unreffed with g_object_unref(). * - * Returns: a #GList of #GVolume<!-- -->s. + * Returns: a #GList of #GVolume objects. **/ GList * g_volume_monitor_get_volumes (GVolumeMonitor *volume_monitor) @@ -310,7 +310,7 @@ g_volume_monitor_get_volumes (GVolumeMonitor *volume_monitor) * The returned list should be freed with g_list_free(), after * its elements have been unreffed with g_object_unref(). * - * Returns: a #GList of #GMount<!-- -->s + * Returns: a #GList of #GMount objects. **/ GList * g_volume_monitor_get_mounts (GVolumeMonitor *volume_monitor) diff --git a/gio/gvolumemonitor.h b/gio/gvolumemonitor.h index 3376378e6..6ef68e9b2 100644 --- a/gio/gvolumemonitor.h +++ b/gio/gvolumemonitor.h @@ -45,7 +45,7 @@ G_BEGIN_DECLS * G_VOLUME_MONITOR_EXTENSION_POINT_NAME: * * Extension point for volume monitor functionality. - * See <link linkend="gio-extension-points">Extending GIO</link>. + * See <link linkend="extending-gio">Extending GIO</link>. */ #define G_VOLUME_MONITOR_EXTENSION_POINT_NAME "gio-volume-monitor" |