summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-09-13 09:16:31 +0100
committerVincent Sanders <vince@kyllikki.org>2016-09-13 09:16:31 +0100
commitc830d14d0bd06dda4eaf7de27ae97b826173afe1 (patch)
tree71eeef5f2c065dda983c41a34ae3c65addb0f814 /frontends
parentfa5e6fcdf90907e238ea74edf4ffdba7656fb163 (diff)
downloadnetsurf-c830d14d0bd06dda4eaf7de27ae97b826173afe1.tar.gz
netsurf-c830d14d0bd06dda4eaf7de27ae97b826173afe1.tar.bz2
cleanup seevral doxygen warnings
Diffstat (limited to 'frontends')
-rwxr-xr-xfrontends/amiga/bitmap.h4
-rw-r--r--frontends/atari/font.c4
-rw-r--r--frontends/atari/plot/plot.c2
-rw-r--r--frontends/framebuffer/gui.c2
-rw-r--r--frontends/windows/gui.h2
5 files changed, 7 insertions, 7 deletions
diff --git a/frontends/amiga/bitmap.h b/frontends/amiga/bitmap.h
index 9a657a60a..771ded487 100755
--- a/frontends/amiga/bitmap.h
+++ b/frontends/amiga/bitmap.h
@@ -43,8 +43,8 @@ struct bitmap *ami_bitmap_from_datatype(char *filename);
/**
* Set bitmap URL
*
- * \param bm a bitmap, as returned by bitmap_create()
- * \param title a pointer to a title string
+ * \param bm a bitmap, as returned by bitmap_create()
+ * \param url the url for the bitmap
*
* A reference will be kept by the bitmap object.
* The URL can only ever be set once for a bitmap.
diff --git a/frontends/atari/font.c b/frontends/atari/font.c
index 85fecced2..5402e7870 100644
--- a/frontends/atari/font.c
+++ b/frontends/atari/font.c
@@ -122,7 +122,7 @@ atari_font_split(const plot_font_style_t *fstyle,
* Measure the width of a string.
*
* \param[in] fstyle plot style for this text
- * \param[in] string UTF-8 string to measure
+ * \param[in] str UTF-8 string to measure
* \param[in] length length of string, in bytes
* \param[out] width updated to width of string[0..length)
* \return NSERROR_OK and width updated or appropriate error code on faliure
@@ -131,7 +131,7 @@ static nserror
atari_font_width(const plot_font_style_t *fstyle,
const char *str,
size_t length,
- int * width)
+ int *width)
{
float scale = plot_get_scale();
diff --git a/frontends/atari/plot/plot.c b/frontends/atari/plot/plot.c
index 2d0805d7e..0a0d7a494 100644
--- a/frontends/atari/plot/plot.c
+++ b/frontends/atari/plot/plot.c
@@ -387,7 +387,7 @@ bool plot_copy_rect(GRECT src, GRECT dst)
/**
* Fill the screen info structure.
*
- * \param vdhi The handle
+ * \param vdih The handle
* \param[out] info The infor structure to fill.
*/
static void read_vdi_sysinfo(short vdih, struct s_vdi_sysinfo * info) {
diff --git a/frontends/framebuffer/gui.c b/frontends/framebuffer/gui.c
index 4936116c2..4d4c7334f 100644
--- a/frontends/framebuffer/gui.c
+++ b/frontends/framebuffer/gui.c
@@ -112,7 +112,7 @@ static void die(const char *error)
/**
* Warn the user of an event.
*
- * \param[in] message A warning looked up in the message translation table
+ * \param[in] warning A warning looked up in the message translation table
* \param[in] detail Additional text to be displayed or NULL.
* \return NSERROR_OK on success or error code if there was a
* faliure displaying the message to the user.
diff --git a/frontends/windows/gui.h b/frontends/windows/gui.h
index 4c3f360b1..e4671eac1 100644
--- a/frontends/windows/gui.h
+++ b/frontends/windows/gui.h
@@ -48,7 +48,7 @@ void win32_set_quit(bool q);
/**
* Warn the user of an event.
*
- * \param[in] message A warning looked up in the message translation table
+ * \param[in] warning A warning looked up in the message translation table
* \param[in] detail Additional text to be displayed or NULL.
* \return NSERROR_OK on success or error code if there was a
* faliure displaying the message to the user.