diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-03-02 02:04:09 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-03-02 02:09:11 +0800 |
commit | b22ac14482bbf215e5ad457104580c624706feda (patch) | |
tree | ac09824783668346a351bcb54efc2a7362a5b490 /widgets | |
parent | da59e01247bfb9230e8c0931bea32301b5fad6e7 (diff) | |
download | gsoc2013-evolution-b22ac14482bbf215e5ad457104580c624706feda.tar.gz gsoc2013-evolution-b22ac14482bbf215e5ad457104580c624706feda.tar.zst gsoc2013-evolution-b22ac14482bbf215e5ad457104580c624706feda.zip |
Fix Gtk-Doc comment notation.
Seeing lots of what I assume to be doxygen syntax in comment blocks.
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-dateedit.c | 8 | ||||
-rw-r--r-- | widgets/table/e-table-sorting-utils.c | 14 |
2 files changed, 13 insertions, 9 deletions
diff --git a/widgets/misc/e-dateedit.c b/widgets/misc/e-dateedit.c index 9aff9de005..b57849c131 100644 --- a/widgets/misc/e-dateedit.c +++ b/widgets/misc/e-dateedit.c @@ -2205,10 +2205,12 @@ e_date_edit_time_is_valid (EDateEdit *dedit) /** * e_date_edit_have_time - * Check if time is set, i.e. it isn't 'None'/empty. Date can be set in this case. + * @dedit: an #EDateEdit * - * @param dedit an EDateEdit widget. - * @return TRUE is time is set, FALSE otherwise. + * Check if time is set, i.e. it isn't 'None'/empty. Date can be set in + * this case. + * + * Returns: %TRUE is time is set, %FALSE otherwise. **/ gboolean e_date_edit_have_time (EDateEdit *dedit) diff --git a/widgets/table/e-table-sorting-utils.c b/widgets/table/e-table-sorting-utils.c index 2fa679644a..1fa91214c2 100644 --- a/widgets/table/e-table-sorting-utils.c +++ b/widgets/table/e-table-sorting-utils.c @@ -376,11 +376,13 @@ e_table_sorting_utils_tree_insert (ETreeModel *source, ETableSortInfo *sort_info /** * e_table_sorting_utils_create_cmp_cache: * - * Creates a new compare cache, which is storing pairs of string keys and string values. - * This can be accessed by @ref e_table_sorting_utils_lookup_cmp_cache and - * @ref e_table_sorting_utils_add_to_cmp_cache. + * Creates a new compare cache, which is storing pairs of string keys and + * string values. This can be accessed by + * e_table_sorting_utils_lookup_cmp_cache() and + * e_table_sorting_utils_add_to_cmp_cache(). * - * Returned pointer should be freed with @ref e_table_sorting_utils_free_cmp_cache. + * Returned pointer should be freed with + * e_table_sorting_utils_free_cmp_cache(). **/ gpointer e_table_sorting_utils_create_cmp_cache (void) @@ -392,8 +394,8 @@ e_table_sorting_utils_create_cmp_cache (void) * e_table_sorting_utils_free_cmp_cache: * @cmp_cache: a compare cache; cannot be %NULL * - * Frees a compare cache previously created - * with @ref e_table_sorting_utils_create_cmp_cache. + * Frees a compare cache previously created with + * e_table_sorting_utils_create_cmp_cache(). **/ void e_table_sorting_utils_free_cmp_cache (gpointer cmp_cache) |