summaryrefslogtreecommitdiff
path: root/frontends/windows
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-02-22 08:30:58 +0000
committerVincent Sanders <vince@kyllikki.org>2017-02-22 08:30:58 +0000
commit1820bb7e637206b7d4b103d32aff364e5e5b529c (patch)
treead2b299d775861810aa26f640c4ff3c6043e20fa /frontends/windows
parentd35f61caa3c84c50971c57a9afae0de5d43956f9 (diff)
downloadnetsurf-1820bb7e637206b7d4b103d32aff364e5e5b529c.tar.gz
netsurf-1820bb7e637206b7d4b103d32aff364e5e5b529c.tar.bz2
fix remaining doccomment errors
Diffstat (limited to 'frontends/windows')
-rw-r--r--frontends/windows/ssl_cert.c2
-rw-r--r--frontends/windows/window.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/frontends/windows/ssl_cert.c b/frontends/windows/ssl_cert.c
index b48d4f5ef..fac211c11 100644
--- a/frontends/windows/ssl_cert.c
+++ b/frontends/windows/ssl_cert.c
@@ -341,7 +341,7 @@ nsw32_window_ssl_cert_size(HWND hwnd, struct nsw32_sslcert_window *certwin)
/**
* Destroy a certificate viewing window
*
- * \param certwin The certificate viewer context
+ * \param crtwin The certificate viewer context
* \return NSERROR_OK on success otherwise appropriate error code
*/
static nserror nsw32_crtvrfy_destroy(struct nsw32_sslcert_window *crtwin)
diff --git a/frontends/windows/window.c b/frontends/windows/window.c
index 173dfc802..c9022026b 100644
--- a/frontends/windows/window.c
+++ b/frontends/windows/window.c
@@ -1694,13 +1694,13 @@ win32_window_place_caret(struct gui_window *w, int x, int y,
/**
* Remove the win32 input focus from window
*
- * \param g window with caret
+ * \param gw window with caret
*/
-static void win32_window_remove_caret(struct gui_window *w)
+static void win32_window_remove_caret(struct gui_window *gw)
{
- if (w == NULL)
+ if (gw == NULL)
return;
- HideCaret(w->drawingarea);
+ HideCaret(gw->drawingarea);
}