Doc fixes

svn path=/trunk/; revision=7223
This commit is contained in:
Matthias Clasen
2008-07-21 02:19:56 +00:00
parent 85840c57b7
commit 3bdbb2b329
3 changed files with 20 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
2008-07-20 Matthias Clasen <mclasen@redhat.com>
* gvfs.c:
* gmount.c: Documentation fixes
2008-07-19 Matthias Clasen <mclasen@redhat.com> 2008-07-19 Matthias Clasen <mclasen@redhat.com>
543504 crash in Epiphany Web Browser: Opening local file 543504 crash in Epiphany Web Browser: Opening local file

View File

@@ -113,6 +113,7 @@ g_mount_base_init (gpointer g_class)
{ {
/** /**
* GMount::changed: * GMount::changed:
* @mount: the object on which the signal is emitted
* *
* Emitted when the mount has been changed. * Emitted when the mount has been changed.
**/ **/
@@ -126,6 +127,7 @@ g_mount_base_init (gpointer g_class)
/** /**
* GMount::unmounted: * GMount::unmounted:
* @mount: the object on which the signal is emitted
* *
* This signal is emitted when the #GMount have been * This signal is emitted when the #GMount have been
* unmounted. If the recipient is holding references to the * unmounted. If the recipient is holding references to the

View File

@@ -79,6 +79,7 @@ g_vfs_is_active (GVfs *vfs)
* Gets a #GFile for @path. * Gets a #GFile for @path.
* *
* Returns: a #GFile. * Returns: a #GFile.
* Free the returned object with g_object_unref().
**/ **/
GFile * GFile *
g_vfs_get_file_for_path (GVfs *vfs, g_vfs_get_file_for_path (GVfs *vfs,
@@ -97,16 +98,16 @@ g_vfs_get_file_for_path (GVfs *vfs,
/** /**
* g_vfs_get_file_for_uri: * g_vfs_get_file_for_uri:
* @vfs: a#GVfs. * @vfs: a#GVfs.
* @uri: a string containing a URI path. * @uri: a string containing a URI
* *
* Gets a #GFile for @uri. * Gets a #GFile for @uri.
* *
* This operation never fails, but the returned object * This operation never fails, but the returned object
* might not support any I/O operation if the uri * might not support any I/O operation if the URI
* is malformed or if the uri type is not supported. * is malformed or if the URI scheme is not supported.
* *
* Returns: a #GFile. * Returns: a #GFile.
* * Free the returned object with g_object_unref().
**/ **/
GFile * GFile *
g_vfs_get_file_for_uri (GVfs *vfs, g_vfs_get_file_for_uri (GVfs *vfs,
@@ -128,7 +129,9 @@ g_vfs_get_file_for_uri (GVfs *vfs,
* *
* Gets a list of URI schemes supported by @vfs. * Gets a list of URI schemes supported by @vfs.
* *
* Returns: a list of strings. * Returns: a %NULL-terminated array of strings.
* The returned array belongs to GIO and must
* not be freed or modified.
**/ **/
const gchar * const * const gchar * const *
g_vfs_get_supported_uri_schemes (GVfs *vfs) g_vfs_get_supported_uri_schemes (GVfs *vfs)
@@ -152,6 +155,7 @@ g_vfs_get_supported_uri_schemes (GVfs *vfs)
* be parsed by the #GVfs module. * be parsed by the #GVfs module.
* *
* Returns: a #GFile for the given @parse_name. * Returns: a #GFile for the given @parse_name.
* Free the returned object with g_object_unref().
**/ **/
GFile * GFile *
g_vfs_parse_name (GVfs *vfs, g_vfs_parse_name (GVfs *vfs,