summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-04-03 00:28:22 +0100
committerVincent Sanders <vince@kyllikki.org>2015-04-03 00:28:22 +0100
commitea9a2ff01d4ca599215a3bd943f7c5fd55d12f63 (patch)
tree1b52fa464a84bf69ca580797d363894fa9129deb
parent77ffda1e46d602fa1efc6eac0e7c4f97f4dfbae1 (diff)
downloadnetsurf-ea9a2ff01d4ca599215a3bd943f7c5fd55d12f63.tar.gz
netsurf-ea9a2ff01d4ca599215a3bd943f7c5fd55d12f63.tar.bz2
Fix up some doxygen errors
-rw-r--r--beos/thumbnail.cpp2
-rw-r--r--content/fs_backing_store.c2
-rw-r--r--gtk/thumbnail.c2
-rw-r--r--riscos/thumbnail.c2
-rw-r--r--windows/window.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/beos/thumbnail.cpp b/beos/thumbnail.cpp
index dacefed41..80944a52b 100644
--- a/beos/thumbnail.cpp
+++ b/beos/thumbnail.cpp
@@ -54,7 +54,7 @@ extern status_t ScaleBitmap(const BBitmap& inBitmap, BBitmap& outBitmap);
*
* \param content content structure to thumbnail
* \param bitmap the bitmap to draw to
- * \param url the URL the thumnail belongs to, or NULL
+ * \return true on success and bitmap updated else false
*/
bool thumbnail_create(hlcache_handle *content, struct bitmap *bitmap)
{
diff --git a/content/fs_backing_store.c b/content/fs_backing_store.c
index 21b42f291..d23a9d1bc 100644
--- a/content/fs_backing_store.c
+++ b/content/fs_backing_store.c
@@ -1663,7 +1663,7 @@ static nserror store_write_file(struct store_state *state,
* takes ownership of the heap block passed in.
*
* @param url The url is used as the unique primary key for the data.
- * @param flags The flags to control how the object is stored.
+ * @param bsflags The flags to control how the object is stored.
* @param data The objects source data.
* @param datalen The length of the \a data.
* @return NSERROR_OK on success or error code on faliure.
diff --git a/gtk/thumbnail.c b/gtk/thumbnail.c
index 2edb579d8..ef95d0c30 100644
--- a/gtk/thumbnail.c
+++ b/gtk/thumbnail.c
@@ -46,7 +46,7 @@
*
* \param content content structure to thumbnail
* \param bitmap the bitmap to draw to
- * \param url the URL the thumnail belongs to, or NULL
+ * \return true on success and bitmap updated else false
*/
bool thumbnail_create(hlcache_handle *content, struct bitmap *bitmap)
{
diff --git a/riscos/thumbnail.c b/riscos/thumbnail.c
index 9b8b52da5..6613b0e6a 100644
--- a/riscos/thumbnail.c
+++ b/riscos/thumbnail.c
@@ -76,7 +76,7 @@ static void thumbnail_restore_output(struct thumbnail_save_area *save_area);
*
* \param content content structure to thumbnail
* \param bitmap the bitmap to draw to
- * \param url the URL the thumbnail belongs to, or NULL
+ * \return true on success and bitmap updated else false
*/
bool thumbnail_create(hlcache_handle *content, struct bitmap *bitmap)
{
diff --git a/windows/window.h b/windows/window.h
index 72c6ec53b..ec54287f4 100644
--- a/windows/window.h
+++ b/windows/window.h
@@ -86,7 +86,7 @@ struct gui_window *nsws_get_gui_window(HWND hwnd);
* Cause a browser window to navigate to a url
*
* \param hwnd The win32 handle to the browser window or one of its decendants.
- * \param url The URL to navigate to.
+ * \param urltxt The URL to navigate to.
*/
bool nsws_window_go(HWND hwnd, const char *urltxt);