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.cc | |
parent | e1278a55369ca9f7c8ebc82a056ac1d0d67baa66 (diff) |
rm unused arg to TagCloseFunct
Diffstat (limited to 'src/form.cc')
-rw-r--r-- | src/form.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/form.cc b/src/form.cc index 454b052c..d5bd71da 100644 --- a/src/form.cc +++ b/src/form.cc @@ -361,7 +361,7 @@ void Html_tag_open_form(DilloHtml *html, const char *tag, int tagsize) a_Url_free(action); } -void Html_tag_close_form(DilloHtml *html, int TagIdx) +void Html_tag_close_form(DilloHtml *html) { // DilloHtmlForm *form; // int i; @@ -682,7 +682,7 @@ void Html_tag_content_textarea(DilloHtml *html, const char *tag, int tagsize) * Close textarea * (TEXTAREA is parsed in VERBATIM mode, and entities are handled here) */ -void Html_tag_close_textarea(DilloHtml *html, int TagIdx) +void Html_tag_close_textarea(DilloHtml *html) { char *str; DilloHtmlInput *input; @@ -776,7 +776,7 @@ 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) { if (html->InFlags & IN_SELECT) { if (html->InFlags & IN_OPTION) @@ -900,7 +900,7 @@ void Html_tag_open_button(DilloHtml *html, const char *tag, int tagsize) /* * Handle close <BUTTON> */ -void Html_tag_close_button(DilloHtml *html, int TagIdx) +void Html_tag_close_button(DilloHtml *html) { html->InFlags &= ~IN_BUTTON; } |