diff --git a/addons/medical/CfgEden.hpp b/addons/medical/CfgEden.hpp index 1b5919d287..8adc47e94d 100644 --- a/addons/medical/CfgEden.hpp +++ b/addons/medical/CfgEden.hpp @@ -23,8 +23,8 @@ class Cfg3DEN { property = QUOTE(ace_isMedicalVehicle); value = 0; control = "CheckboxNumber"; - displayName = CSTRING(AssignMedicVehicle_enabled_DisplayName) - tooltip = CSTRING(Attributes_isMedicalVehicle_Description) + displayName = CSTRING(AssignMedicVehicle_enabled_DisplayName); + tooltip = CSTRING(Attributes_isMedicalVehicle_Description); expression = QUOTE(_this setVariable [ARR_2(QUOTE(QGVAR(medicClass)),_value)];); typeName = "NUMBER"; condition = "objectVehicle"; @@ -34,8 +34,8 @@ class Cfg3DEN { property = QUOTE(ace_isMedicalFacility); value = 0; control = "Checkbox"; - displayName = CSTRING(AssignMedicalFacility_enabled_DisplayName) - tooltip = CSTRING(AssignMedicalFacility_enabled_Description) + displayName = CSTRING(AssignMedicalFacility_enabled_DisplayName); + tooltip = CSTRING(AssignMedicalFacility_enabled_Description); expression = QUOTE(_this setVariable [ARR_2(QUOTE(QGVAR(isMedicalFacility)),_value)];); typeName = "BOOL"; condition = "(1 - objectBrain) * (1 - objectVehicle)"; diff --git a/addons/repair/CfgEden.hpp b/addons/repair/CfgEden.hpp index 085b298e46..3adbe6b336 100644 --- a/addons/repair/CfgEden.hpp +++ b/addons/repair/CfgEden.hpp @@ -23,8 +23,8 @@ class Cfg3DEN { property = QUOTE(ace_isRepairVehicle); value = 0; control = "CheckboxNumber"; - displayName = CSTRING(AssignRepairVehicle_role_DisplayName) - tooltip = CSTRING(AssignRepairVehicle_role_Description) + displayName = CSTRING(AssignRepairVehicle_role_DisplayName); + tooltip = CSTRING(AssignRepairVehicle_role_Description); expression = "_this setVariable ['%s',_value];"; typeName = "NUMBER"; condition = "objectVehicle"; @@ -34,8 +34,8 @@ class Cfg3DEN { property = QUOTE(ace_isRepairFacility); value = 0; control = "CheckboxNumber"; - displayName = CSTRING(AssignRepairFacility_role_DisplayName) - tooltip = CSTRING(AssignRepairFacility_role_Description) + displayName = CSTRING(AssignRepairFacility_role_DisplayName); + tooltip = CSTRING(AssignRepairFacility_role_Description); expression = "_this setVariable ['%s',_value];"; typeName = "NUMBER"; condition = "(1 - objectBrain) * (1 - objectVehicle)";