1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-23 19:57:21 +01:00

* FWCmdChange.cpp (FWCmdChangeOptionsObject::notify): fixes #1212

Cluster object was not marked for recompile when user edited
conntrack group parameters
This commit is contained in:
Vadim Kurland 2010-02-07 17:48:12 +00:00
parent a0314a7d97
commit d241ce0b9c
3 changed files with 12 additions and 2 deletions

View File

@ -1 +1 @@
#define BUILD_NUM 2503
#define BUILD_NUM 2504

View File

@ -1,3 +1,9 @@
2010-02-07 vadim <vadim@vk.crocodile.org>
* FWCmdChange.cpp (FWCmdChangeOptionsObject::notify): fixes #1212
Cluster object was not marked for recompile when user edited
conntrack group parameters
2010-02-06 vadim <vadim@vk.crocodile.org>
* src/pflib/PolicyCompiler_pf_writers.cpp (PrintRule::processNext):

View File

@ -180,10 +180,13 @@ void FWCmdChangeName::notify()
/********************************************************
* FWCmdChangeOptionsObject
*
* This command is used to change failover or state protocol parameters
* (CARP, conntrack, heartbeat, vrrp, pfsync, openais)
********************************************************/
FWCmdChangeOptionsObject::FWCmdChangeOptionsObject(ProjectPanel *project, FWObject *obj) :
FWCmdChange(project, obj, QObject::tr("Edit rule options"))
FWCmdChange(project, obj, QObject::tr("Edit protocol parameters"))
{}
void FWCmdChangeOptionsObject::notify()
@ -198,6 +201,7 @@ void FWCmdChangeOptionsObject::notify()
QCoreApplication::postEvent(
mw, new showObjectInTreeEvent(filename, obj->getParent()->getId()));
QCoreApplication::postEvent(mw, new reloadRulesetEvent(filename));
QCoreApplication::postEvent(mw, new dataModifiedEvent(filename, obj->getId()));
}