aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-store.c
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@aful.org>1999-08-07 01:28:26 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-08-07 01:28:26 +0800
commitdb89b1a62fb0fa1ed57a9cdd275c0a977630a56a (patch)
treea6e43ba18be9f88e70b9cc8dd9441085d322049e /camel/camel-store.c
parent85067acb32a4992410e337352f8c54b61b78709b (diff)
downloadgsoc2013-evolution-db89b1a62fb0fa1ed57a9cdd275c0a977630a56a.tar
gsoc2013-evolution-db89b1a62fb0fa1ed57a9cdd275c0a977630a56a.tar.gz
gsoc2013-evolution-db89b1a62fb0fa1ed57a9cdd275c0a977630a56a.tar.bz2
gsoc2013-evolution-db89b1a62fb0fa1ed57a9cdd275c0a977630a56a.tar.lz
gsoc2013-evolution-db89b1a62fb0fa1ed57a9cdd275c0a977630a56a.tar.xz
gsoc2013-evolution-db89b1a62fb0fa1ed57a9cdd275c0a977630a56a.tar.zst
gsoc2013-evolution-db89b1a62fb0fa1ed57a9cdd275c0a977630a56a.zip
updated some autogen doc stuff. Still don't understand warnings :(
1999-08-06 bertrand <Bertrand.Guiheneuf@aful.org> * devel-docs/camel/: updated some autogen doc stuff. Still don't understand warnings :( * camel/camel-data-wrapper.c: * camel/providers/MH/camel-mh-store.c: * camel/url-util.c: * camel/gmime-content-field.c: * camel/camel-store.c: various inline doc corrections. * camel/camel-folder.c (get_message_count): new method. Returns the number of message in the folder. svn path=/trunk/; revision=1092
Diffstat (limited to 'camel/camel-store.c')
-rw-r--r--camel/camel-store.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/camel/camel-store.c b/camel/camel-store.c
index 56faca9a35..a6fb1a303e 100644
--- a/camel/camel-store.c
+++ b/camel/camel-store.c
@@ -104,8 +104,7 @@ camel_store_init (CamelStore *store, CamelSession *session, gchar *url_name)
/**
- * init: method called by a session object to
- * initialize a store object
+ * init: method called by a session object to initialize a store object
* @store: the store to initialize
* @session: session which instantiates the store
* @url_name: URL defining the store
@@ -130,8 +129,7 @@ _init (CamelStore *store, CamelSession *session, gchar *url_name)
/**
- * camel_store_set_separator: set the character which separates this folder
- * path from the folders names in a lower level of hierarchy.
+ * camel_store_set_separator: set the character which separates this folder path from the folders names in a lower level of hierarchy.
*
* @store:
* @sep:
@@ -155,12 +153,14 @@ _get_separator (CamelStore *store)
}
-/**
- * camel_store_get_separator: return the character which separates this folder
- * path from the folders names in a lower level of hierarchy.
- *
+
+/**
+ * camel_store_get_separator: return the character which separates this folder path from the folders names in a lower level of hierarchy.
* @store: store
- *
+ *
+ *
+ *
+ * Return value: the separator
**/
gchar
camel_store_get_separator (CamelStore *store)
@@ -183,6 +183,8 @@ _get_folder (CamelStore *store, const gchar *folder_name)
/**
* camel_store_get_folder: return the folder corresponding to a path.
+ * @store: store
+ * @folder_name: name of the folder to get
*
* Returns the folder corresponding to the path "name".
* If the path begins with the separator caracter, it
@@ -193,8 +195,6 @@ _get_folder (CamelStore *store, const gchar *folder_name)
* If it does not exist, you can create it with its
* "create" method.
*
- * @store: store
- * @folder_name: name of the folder to get
*
* Return value: the folder
**/