From 1820bb7e637206b7d4b103d32aff364e5e5b529c Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 22 Feb 2017 08:30:58 +0000 Subject: fix remaining doccomment errors --- frontends/windows/ssl_cert.c | 2 +- frontends/windows/window.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'frontends/windows') 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); } -- cgit v1.2.3