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/window.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'frontends/windows/window.c') 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