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:
parent
fc5e37d74d
commit
f8d10ec3ff
@ -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"
|
||||
|
||||
|
||||
@ -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";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user