Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/ea9a2ff01d4ca599215a3...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/ea9a2ff01d4ca599215a3bd...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/ea9a2ff01d4ca599215a3bd94...
The branch, master has been updated
via ea9a2ff01d4ca599215a3bd943f7c5fd55d12f63 (commit)
from 77ffda1e46d602fa1efc6eac0e7c4f97f4dfbae1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=ea9a2ff01d4ca599215...
commit ea9a2ff01d4ca599215a3bd943f7c5fd55d12f63
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
Fix up some doxygen errors
diff --git a/beos/thumbnail.cpp b/beos/thumbnail.cpp
index dacefed..80944a5 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 21b42f2..d23a9d1 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 2edb579..ef95d0c 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 9b8b52d..6613b0e 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 72c6ec5..ec54287 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);
-----------------------------------------------------------------------
Summary of changes:
beos/thumbnail.cpp | 2 +-
content/fs_backing_store.c | 2 +-
gtk/thumbnail.c | 2 +-
riscos/thumbnail.c | 2 +-
windows/window.h | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/beos/thumbnail.cpp b/beos/thumbnail.cpp
index dacefed..80944a5 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 21b42f2..d23a9d1 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 2edb579..ef95d0c 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 9b8b52d..6613b0e 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 72c6ec5..ec54287 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);
--
NetSurf Browser