Fix up docs

svn path=/trunk/; revision=6133
This commit is contained in:
Matthias Clasen 2007-12-15 06:03:35 +00:00
parent 2f3aef1617
commit f5d2feddf6
3 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2007-12-14 Matthias Clasen <mclasen@redhat.com>
* gunixmounts.c:
* gfile.h: Doc updates
2007-12-14 Matthias Clasen <mclasen@redhat.com> 2007-12-14 Matthias Clasen <mclasen@redhat.com>
* gcontenttype.c: * gcontenttype.c:

View File

@ -54,8 +54,8 @@ typedef enum {
/** /**
* GFileCreateFlags: * GFileCreateFlags:
* @G_FILE_CREATE_FLAGS_NONE: No flags set. * @G_FILE_CREATE_NONE: No flags set.
* @G_FILE_CREATE_FLAGS_PRIVATE: Create a file that can only be * @G_FILE_CREATE_PRIVATE: Create a file that can only be
* accessed by the current user. * accessed by the current user.
* *
* Flags used when an operation may create a file. * Flags used when an operation may create a file.
@ -226,8 +226,8 @@ typedef gboolean (* GFileReadMoreCallback) (const char *file_contents,
* @unmount_mountable_finish: Finishes an unmount operation. * @unmount_mountable_finish: Finishes an unmount operation.
* @eject_mountable: Ejects a mountable. * @eject_mountable: Ejects a mountable.
* @eject_mountable_finish: Finishes an eject operation. * @eject_mountable_finish: Finishes an eject operation.
* @g_file_mount_enclosing_volume: Mounts a specified location. * @mount_enclosing_volume: Mounts a specified location.
* @g_file_mount_enclosing_volume_finish: Finishes mounting a specified location. * @mount_enclosing_volume_finish: Finishes mounting a specified location.
* @monitor_dir: Creates a #GDirectoryMonitor for the location. * @monitor_dir: Creates a #GDirectoryMonitor for the location.
* @monitor_file: Creates a #GFileMonitor for the location. * @monitor_file: Creates a #GFileMonitor for the location.
* *

View File

@ -193,14 +193,16 @@ is_in (const char *value, const char *set[])
/** /**
* g_unix_is_mount_path_system_internal: * g_unix_is_mount_path_system_internal:
* @mount_path: a mount path, e.g. <literal>/media/disk</literal> or <literal>/usr</literal> * @mount_path: a mount path, e.g. <filename>/media/disk</filename>
* or <filename>/usr</filename>
* *
* Determines if @mount_path is considered an implementation of the * Determines if @mount_path is considered an implementation of the
* OS. This is primarily used for hiding mountable and mounted volumes * OS. This is primarily used for hiding mountable and mounted volumes
* that only are used in the OS and has little to no relevance to the * that only are used in the OS and has little to no relevance to the
* casual user. * casual user.
* *
* Returns; %TRUE if @mount_path is considered an implementation detail of the OS. * Returns: %TRUE if @mount_path is considered an implementation detail
* of the OS.
**/ **/
gboolean gboolean
g_unix_is_mount_path_system_internal (const char *mount_path) g_unix_is_mount_path_system_internal (const char *mount_path)