diff options
author | jcid <devnull@localhost> | 2008-08-20 21:05:46 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-08-20 21:05:46 +0200 |
commit | 0efcd3c96bed169c26bf3bf32d5ba47dcf8aa29e (patch) | |
tree | e363ff08cc2036f2b80e99e17d38bb5fb1b35c9b | |
parent | 7bf7329b81cdc4757273038342a5b9c3edfa3cbe (diff) |
- Fixed a form reset typo bug.
-rw-r--r-- | src/form.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/form.cc b/src/form.cc index dcc2c556..b6cae648 100644 --- a/src/form.cc +++ b/src/form.cc @@ -1570,7 +1570,7 @@ void DilloHtmlInput::activate(DilloHtmlForm *form, bool force_submit, break; case DILLO_HTML_INPUT_RESET: case DILLO_HTML_INPUT_BUTTON_RESET: - reset (); + form->reset (); break; default: form->submit (this, click_x, click_y); |