diff options
author | jcid <devnull@localhost> | 2008-05-27 20:13:51 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-05-27 20:13:51 +0200 |
commit | 27ec95d76e25b7bf073932b7489e7133d6c15938 (patch) | |
tree | e8f3c3297588de5e8f4c1042617c5e5a1e50e825 /src/html.cc | |
parent | 22ea183c31a5273af365c376e3427add26c6a905 (diff) |
- local var rename.
Diffstat (limited to 'src/html.cc')
-rw-r--r-- | src/html.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html.cc b/src/html.cc index 493407fc..81dae4b6 100644 --- a/src/html.cc +++ b/src/html.cc @@ -1055,9 +1055,9 @@ int DilloHtml::formNew(DilloHtmlMethod method, const DilloUrl *action, { DilloHtmlForm *form = new DilloHtmlForm (method,action,enc,charset); form->form_receiver = new form::Form (this); - int size = forms->size (); + int nf = forms->size (); forms->increase (); - forms->set (size, form); + forms->set (nf, form); _MSG("Html formNew: action=%s nform=%d\n", action, nf); return forms->size(); } |