summaryrefslogtreecommitdiff
path: root/frontends/windows/localhistory.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-02-19 11:32:17 +0000
committerVincent Sanders <vince@kyllikki.org>2017-02-19 11:32:17 +0000
commit0f69965805dda51cc7b6ea8404226d5f75a3b533 (patch)
treef93ff08e80b746c7712028fa26d84df051ba53ad /frontends/windows/localhistory.c
parent8ddb9df3778abadc095505d5711b08e9cd9f270a (diff)
downloadnetsurf-0f69965805dda51cc7b6ea8404226d5f75a3b533.tar.gz
netsurf-0f69965805dda51cc7b6ea8404226d5f75a3b533.tar.bz2
clean up some of the doxygen generation warnings
Diffstat (limited to 'frontends/windows/localhistory.c')
-rw-r--r--frontends/windows/localhistory.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/frontends/windows/localhistory.c b/frontends/windows/localhistory.c
index ae3b7f521..ea913c1a2 100644
--- a/frontends/windows/localhistory.c
+++ b/frontends/windows/localhistory.c
@@ -108,11 +108,13 @@ nsws_localhistory_up(struct nsws_localhistory *l, struct gui_window *gw)
}
-void nsws_localhistory_close(struct gui_window *w)
+/* exported interface documented in windows/localhistory.h */
+void nsws_localhistory_close(struct gui_window *gw)
{
- struct nsws_localhistory *l = gui_window_localhistory(w);
- if (l != NULL)
- CloseWindow(l->hwnd);
+ struct nsws_localhistory *lh = gui_window_localhistory(gw);
+ if (lh != NULL) {
+ CloseWindow(lh->hwnd);
+ }
}