No external form deletion.

This commit is contained in:
2025-09-27 18:37:26 -04:00
parent af3a57620d
commit 40a342d4e3
2 changed files with 0 additions and 6 deletions

View File

@ -237,11 +237,6 @@ std::unique_ptr< DilloHtmlForm > a_Html_form_new (DilloHtml *html, DilloHtmlMeth
enabled); enabled);
} }
void a_Html_input_delete (DilloHtmlInput *input)
{
delete input;
}
void a_Html_form_submit2(void *vform) void a_Html_form_submit2(void *vform)
{ {
((DilloHtmlFormImpl *)vform)->submit(NULL, NULL); ((DilloHtmlFormImpl *)vform)->submit(NULL, NULL);

View File

@ -71,7 +71,6 @@ std::unique_ptr< DilloHtmlForm > a_Html_form_new(DilloHtml *html,
DilloHtmlEnc enc, DilloHtmlEnc enc,
const char *charset, bool enabled); const char *charset, bool enabled);
void a_Html_input_delete(DilloHtmlInput* input);
void a_Html_form_submit2(void *v_form); void a_Html_form_submit2(void *v_form);
void a_Html_form_reset2(void *v_form); void a_Html_form_reset2(void *v_form);
void a_Html_form_display_hiddens2(void *v_form, bool display); void a_Html_form_display_hiddens2(void *v_form, bool display);