summaryrefslogtreecommitdiff
path: root/desktop
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
parentdf8c6c3ad758fbcd88fbbe7fb53221a32ae3abe2 (diff)
downloadnetsurf-ea033c54d474113d6755ab19ad2c6b59e7ca1f01.tar.gz
netsurf-ea033c54d474113d6755ab19ad2c6b59e7ca1f01.tar.bz2
Doxygen cleanups
Diffstat (limited to 'desktop')
-rw-r--r--desktop/searchweb.h16
-rw-r--r--desktop/textinput.h3
2 files changed, 11 insertions, 8 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);
diff --git a/desktop/textinput.h b/desktop/textinput.h
index 4bf8abdb6..a0b9f485d 100644
--- a/desktop/textinput.h
+++ b/desktop/textinput.h
@@ -86,7 +86,8 @@ void browser_window_place_caret(struct browser_window *bw, int x, int y,
/**
* Removes the caret and callback for key process.
*
- * \param bw The browser window from which to remove caret
+ * \param bw The browser window from which to remove caret.
+ * \param only_hide Revove teh caret but leave teh textinput editable.
*/
void browser_window_remove_caret(struct browser_window *bw, bool only_hide);