mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-04 09:42:40 +02:00
try to fix build, use plain -1
in place of CGHeroInstance::NO_PATROLLING
This commit is contained in:
parent
56efb82b2e
commit
da5bae301a
@ -1874,6 +1874,5 @@ const IOwnableObject * CGHeroInstance::asOwnable() const
|
||||
return this;
|
||||
}
|
||||
|
||||
inline constexpr int CGHeroInstance::NO_PATROLLING;
|
||||
|
||||
VCMI_LIB_NAMESPACE_END
|
||||
|
@ -18,7 +18,6 @@
|
||||
#include "../lib/mapObjectConstructors/AObjectTypeHandler.h"
|
||||
#include "../lib/mapObjectConstructors/CObjectClassesHandler.h"
|
||||
#include "../lib/mapObjects/ObjectTemplate.h"
|
||||
#include "../lib/mapObjects/CGHeroInstance.h"
|
||||
#include "../lib/mapping/CMap.h"
|
||||
#include "../lib/constants/StringConstants.h"
|
||||
|
||||
@ -339,7 +338,7 @@ void Inspector::updateProperties(CGHeroInstance * o)
|
||||
{
|
||||
const int maxRadius = 60;
|
||||
auto * patrolDelegate = new InspectorDelegate;
|
||||
patrolDelegate->options = { {QObject::tr("No patrol"), QVariant::fromValue(CGHeroInstance::NO_PATROLLING)} };
|
||||
patrolDelegate->options = { {QObject::tr("No patrol"), QVariant::fromValue(-1)} };
|
||||
for(int i = 0; i <= maxRadius; ++i)
|
||||
patrolDelegate->options.push_back({ QObject::tr("%1 tile(s)").arg(i), QVariant::fromValue(i) });
|
||||
auto patrolRadiusText = o->patrol.patrolling ? QObject::tr("%1 tile(s)").arg(o->patrol.patrolRadius) : QObject::tr("No patrol");
|
||||
@ -724,9 +723,9 @@ void Inspector::setProperty(CGHeroInstance * o, const QString & key, const QVari
|
||||
|
||||
if(key == "Patrol radius")
|
||||
{
|
||||
o->patrol.patrolRadius = value.toInt();
|
||||
if(o->patrol.patrolRadius != CGHeroInstance::NO_PATROLLING)
|
||||
o->patrol.patrolling = true;
|
||||
auto radius = value.toInt();
|
||||
o->patrol.patrolRadius = radius;
|
||||
o->patrol.patrolling = radius != -1;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user