1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-24 04:07:55 +01:00

fixed SF bug #3433587 "Manual edit of new service Destination Port END

value fails". This bug made it impossible to edit the value of the end
of the port range because as soon as the value became less than the
value of the beginning the range, the GUI would reset it to be equal
to the value of the beginning of the range. This affected both TCP and
UDP service object dialogs.
This commit is contained in:
Vadim Kurland 2011-11-08 06:52:07 -08:00
parent cdb4ee1f09
commit 6df0cdb45e
3 changed files with 20 additions and 1 deletions

View File

@ -1,5 +1,13 @@
2011-11-08 Vadim Kurland <vadim@netcitadel.com>
* BaseObjectDialog.cpp (connectSignalsOfAllWidgetsToSlotChange):
fixed SF bug #3433587 "Manual edit of new service Destination Port
END value fails". This bug made it impossible to edit the value of
the end of the port range because as soon as the value became less
than the value of the beginning the range, the GUI would reset it
to be equal to the value of the beginning of the range. This
affected both TCP and UDP service object dialogs.
* PolicyCompiler_ipfw_writers.cpp (PrintRule::_printAddr): fixed
SF bug #3426843 "ipfw doesn't work for self-reference, in
5.0.0.3568 version".

View File

@ -79,7 +79,7 @@ void BaseObjectDialog::connectSignalsOfAllWidgetsToSlotChange()
QSpinBox *sb = qobject_cast<QSpinBox*>(w);
if (sb)
{
connect(sb, SIGNAL(valueChanged(int)), this, SLOT(changed()));
connect(sb, SIGNAL(editingFinished()), this, SLOT(changed()));
continue;
}

View File

@ -165,6 +165,17 @@
</p>
</li>
<li>
<p>
fixed SF bug #3433587 "Manual edit of new service Destination
Port END value fails". This bug made it impossible to edit the
value of the end of the port range because as soon as the value
became less than the value of the beginning the range, the GUI
would reset it to be equal to the value of the beginning of the
range. This affected both TCP and UDP service object dialogs.
</p>
</li>
</ul>