* cosmetics

This commit is contained in:
djcb
2012-10-31 20:36:02 +02:00
parent d70d4e55ea
commit aaec71634e
3 changed files with 48 additions and 30 deletions

View File

@ -23,7 +23,16 @@
#include <glib.h>
G_BEGIN_DECLS
/**
* @addtogroup MuBookmarks
* Functions for dealing with bookmarks
* @{
*/
struct _MuBookmarks;
/*! \struct MuBookmarks
* \brief Opaque structure representing a sequence of bookmarks
*/
typedef struct _MuBookmarks MuBookmarks;
@ -70,6 +79,8 @@ typedef void (*MuBookmarksForeachFunc) (const gchar *key, const gchar *val,
void mu_bookmarks_foreach (MuBookmarks *bm, MuBookmarksForeachFunc func,
gpointer user_data);
/** @} */
G_END_DECLS
#endif /*__MU_BOOKMARKS_H__*/

View File

@ -24,6 +24,11 @@
G_BEGIN_DECLS
/**
* @addtogroup MuDate
* Date-related functions
* @{
*/
/**
* get a string for a given time_t
@ -140,7 +145,7 @@ time_t mu_date_str_to_time_t (const char* date, gboolean local);
const char* mu_date_time_t_to_str_s (time_t t, gboolean local);
char* mu_date_time_t_to_str (time_t t, gboolean local);
/** @} */
G_END_DECLS

View File

@ -32,6 +32,7 @@ G_BEGIN_DECLS
/**
* @addtogroup MuStr
* Various string utilities
* @{
*/
@ -48,7 +49,8 @@ G_BEGIN_DECLS
* returns a newly allocated string that you must free with g_free
* when done with it.
*
* @param str a 'contact str' (ie., what is in the To/Cc/Bcc/From fields), or NULL
* @param str a 'contact str' (ie., what is in the To/Cc/Bcc/From
* fields), or NULL
*
* @return a newly allocated string with a display contact
*/