diff options
author | corvid <corvid@lavabit.com> | 2012-11-26 06:38:14 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2012-11-26 06:38:14 +0000 |
commit | ae3d6a7af29ef4954269e60f1c4fc382ca7d80a9 (patch) | |
tree | a1628c871a0ccf6f9a549f58974d1a1457fd48e1 /src/form.hh | |
parent | e1278a55369ca9f7c8ebc82a056ac1d0d67baa66 (diff) |
rm unused arg to TagCloseFunct
Diffstat (limited to 'src/form.hh')
-rw-r--r-- | src/form.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/form.hh b/src/form.hh index cd04543f..297442e0 100644 --- a/src/form.hh +++ b/src/form.hh @@ -48,16 +48,16 @@ void a_Html_form_display_hiddens2(void *v_form, bool display); */ void Html_tag_open_form(DilloHtml *html, const char *tag, int tagsize); -void Html_tag_close_form(DilloHtml *html, int TagIdx); +void Html_tag_close_form(DilloHtml *html); void Html_tag_open_input(DilloHtml *html, const char *tag, int tagsize); void Html_tag_open_isindex(DilloHtml *html, const char *tag, int tagsize); void Html_tag_open_textarea(DilloHtml *html, const char *tag, int tagsize); void Html_tag_content_textarea(DilloHtml *html, const char *tag, int tagsize); -void Html_tag_close_textarea(DilloHtml *html, int TagIdx); +void Html_tag_close_textarea(DilloHtml *html); void Html_tag_open_select(DilloHtml *html, const char *tag, int tagsize); -void Html_tag_close_select(DilloHtml *html, int TagIdx); +void Html_tag_close_select(DilloHtml *html); void Html_tag_open_option(DilloHtml *html, const char *tag, int tagsize); void Html_tag_open_button(DilloHtml *html, const char *tag, int tagsize); -void Html_tag_close_button(DilloHtml *html, int TagIdx); +void Html_tag_close_button(DilloHtml *html); #endif /* __FORM_HH__ */ |