summaryrefslogtreecommitdiff
path: root/desktop/searchweb.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-11-10 16:05:22 +0000
committerVincent Sanders <vince@kyllikki.org>2014-11-10 16:05:22 +0000
commitea033c54d474113d6755ab19ad2c6b59e7ca1f01 (patch)
tree6ee9fd8e904177891987b227bec03d146ff33cd8 /desktop/searchweb.h
parentdf8c6c3ad758fbcd88fbbe7fb53221a32ae3abe2 (diff)
downloadnetsurf-ea033c54d474113d6755ab19ad2c6b59e7ca1f01.tar.gz
netsurf-ea033c54d474113d6755ab19ad2c6b59e7ca1f01.tar.bz2
Doxygen cleanups
Diffstat (limited to 'desktop/searchweb.h')
-rw-r--r--desktop/searchweb.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/desktop/searchweb.h b/desktop/searchweb.h
index b3b3902cf..2d8bc3b9a 100644
--- a/desktop/searchweb.h
+++ b/desktop/searchweb.h
@@ -45,11 +45,13 @@ struct gui_search_web_table {
* Flags which alter the behaviour of the omin search.
*/
enum search_web_omni_flags {
- SEARCH_WEB_OMNI_NONE = 0, /**< no changes to default operation */
- SEARCH_WEB_OMNI_SEARCHONLY = 1, /**< The search does not attempt to
- * interpret the url as a url before
- * using it as a search term.
- */
+ /** no changes to default operation */
+ SEARCH_WEB_OMNI_NONE = 0,
+
+ /** The search does not attempt to interpret the url as a url
+ * before using it as a search term.
+ */
+ SEARCH_WEB_OMNI_SEARCHONLY = 1,
};
/**
@@ -88,7 +90,7 @@ nserror search_web_select_provider(int selection);
* \param name Pointer to fill in with the search provider name requested.
* \return -1 if there are no more, otherwise the iterator for the next item.
*
- * \verb
+ * \verbatim
* ssize_t iter;
* const char *name;
* ...
@@ -97,7 +99,7 @@ nserror search_web_select_provider(int selection);
* iter = search_web_iterate_providers(iter, &name)) {
* do_something_with(name);
* }
- * \endverb
+ * \endverbatim
*/
ssize_t search_web_iterate_providers(ssize_t from, const char **name);