fixes #2669 "Cant inspect custom Service object in Standard objects

library".
This commit is contained in:
Vadim Kurland
2011-11-15 11:38:11 -08:00
parent edb126f3e3
commit aa8f7edc7f
8 changed files with 19 additions and 7 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ FWB_MICRO_VERSION=1
# build number is like "nano" version number. I am incrementing build
# number during development cycle
#
BUILD_NUM="3585"
BUILD_NUM="3586"
VERSION="$FWB_MAJOR_VERSION.$FWB_MINOR_VERSION.$FWB_MICRO_VERSION.$BUILD_NUM"
+1 -1
View File
@@ -1,2 +1,2 @@
#define VERSION "5.0.1.3585"
#define VERSION "5.0.1.3586"
#define GENERATION "5.0"
+5
View File
@@ -1,3 +1,8 @@
2011-11-15 Vadim Kurland <vadim@netcitadel.com>
* CustomServiceDialog.cpp (loadFWObject): fixes #2669 "Cant
inspect custom Service object in Standard objects library".
2011-11-10 Vadim Kurland <vadim@netcitadel.com>
* configlets/linux24/check_utilities: fixes #2664 Update error
+1 -1
View File
@@ -3,7 +3,7 @@
%define name fwbuilder
%define version 5.0.1.3585
%define version 5.0.1.3586
%define release 1
%if "%_vendor" == "MandrakeSoft"
+1 -1
View File
@@ -4,6 +4,6 @@ Replaces: fwbuilder (<=4.1.1-1), fwbuilder-common, fwbuilder-bsd, fwbuilder-linu
Priority: extra
Section: checkinstall
Maintainer: vadim@fwbuilder.org
Version: 5.0.1.3585-1
Version: 5.0.1.3586-1
Depends: libqt4-gui (>= 4.4.0), libqt4-network (>= 4.4.0), libxml2, libxslt1.1, libsnmp | libsnmp15
Description: Firewall Builder GUI and policy compilers
+1 -1
View File
@@ -1,6 +1,6 @@
%define name fwbuilder
%define version 5.0.1.3585
%define version 5.0.1.3586
%define release 1
%if "%_vendor" == "MandrakeSoft"
+2 -2
View File
@@ -152,8 +152,8 @@ void CustomServiceDialog::loadFWObject(FWObject *o)
m_dialog->code->setEnabled(!o->isReadOnly());
setDisabledPalette(m_dialog->code);
m_dialog->platform->setEnabled(!o->isReadOnly());
setDisabledPalette(m_dialog->platform);
// do not make "platform" widget disabled when object is read-only
// to let the user flip between platforms to see the configuration. See #2669
m_dialog->protocol->setEnabled(!o->isReadOnly());
setDisabledPalette(m_dialog->protocol);
@@ -186,6 +186,13 @@
</p>
</li>
<li>
<p>
fixes #2669 "Cant inspect custom Service object in Standard
objects library".
</p>
</li>
</ul>