diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2008-12-19 20:18:35 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2008-12-19 20:18:35 -0300 |
commit | 2950e1945283baeffea46480d14f32e21b294a44 (patch) | |
tree | 4853a8c170c552438e4b58486add51dd066bf4bc /src/form.cc | |
parent | 88649e033a26be4ab3f337c856d6098e05adcd0d (diff) |
Cleaned up Html_pop_tag()
Diffstat (limited to 'src/form.cc')
-rw-r--r-- | src/form.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/form.cc b/src/form.cc index 3f7bbaca..a36cd13a 100644 --- a/src/form.cc +++ b/src/form.cc @@ -372,8 +372,6 @@ void Html_tag_close_form(DilloHtml *html, int TagIdx) html->InFlags &= ~IN_SELECT; html->InFlags &= ~IN_OPTION; html->InFlags &= ~IN_TEXTAREA; - - a_Html_pop_tag(html, TagIdx); } /* @@ -698,7 +696,6 @@ void Html_tag_close_textarea(DilloHtml *html, int TagIdx) html->InFlags &= ~IN_TEXTAREA; } - a_Html_pop_tag(html, TagIdx); } /* @@ -787,8 +784,6 @@ void Html_tag_close_select(DilloHtml *html, int TagIdx) SelectionResource *res = (SelectionResource*)input->embed->getResource(); select->addOptionsTo (res); } - - a_Html_pop_tag(html, TagIdx); } /* @@ -902,7 +897,6 @@ void Html_tag_open_button(DilloHtml *html, const char *tag, int tagsize) void Html_tag_close_button(DilloHtml *html, int TagIdx) { html->InFlags &= ~IN_BUTTON; - a_Html_pop_tag(html, TagIdx); } /* |