1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-24 12:17:26 +01:00

* RuleSetModel.cpp (RuleSetModel::getDecoration): fixed #1363

"GUI crash in newClusterDialog". GUI crashed after a new cluster
object has been created from two PF firewalls.
This commit is contained in:
Vadim Kurland 2010-03-27 02:13:01 +00:00
parent fc5e37d74d
commit f8d10ec3ff
3 changed files with 6 additions and 2 deletions

View File

@ -1 +1 @@
#define BUILD_NUM 2760
#define BUILD_NUM 2764

View File

@ -1,5 +1,9 @@
2010-03-26 vadim <vadim@vk.crocodile.org>
* RuleSetModel.cpp (RuleSetModel::getDecoration): fixed #1363
"GUI crash in newClusterDialog". GUI crashed after a new cluster
object has been created from two PF firewalls.
* configlets/linux24/check_utilities: fixed #1359 "generated
script hangs testing for iptables-restore"

View File

@ -250,7 +250,7 @@ QVariant RuleSetModel::getDecoration(const QModelIndex &index) const
if (!node || node->type != RuleNode::Rule)
return QVariant();
if (!node->rule->isDisabled()) return QVariant();
if (node->rule && !node->rule->isDisabled()) return QVariant();
QVariant res;
QString icn_file = ":/Icons/neg";