diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-03-02 02:04:09 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:40 +0800 |
commit | ab870b27cd05cc39e4755de9c6d9e02944977c17 (patch) | |
tree | 0ad0fb5bcf24985d904e46955fb390ad147c77d3 /widgets/table | |
parent | d79a9a0fe16d52a9ec78b87ff2a63afa3a6e106e (diff) | |
download | gsoc2013-evolution-ab870b27cd05cc39e4755de9c6d9e02944977c17.tar.gz gsoc2013-evolution-ab870b27cd05cc39e4755de9c6d9e02944977c17.tar.zst gsoc2013-evolution-ab870b27cd05cc39e4755de9c6d9e02944977c17.zip |
Fix Gtk-Doc comment notation.
Seeing lots of what I assume to be doxygen syntax in comment blocks.
Diffstat (limited to 'widgets/table')
-rw-r--r-- | widgets/table/e-table-sorting-utils.c | 14 |
1 files changed, 8 insertions, 6 deletions
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) |