Lowercased beginning of functions pt2

This commit is contained in:
jonpas 2015-05-09 03:12:28 +02:00
parent 2a9f4d779d
commit 50d5e845ee
3 changed files with 4 additions and 4 deletions

View File

@ -11,8 +11,8 @@
Nothing
Example:
1 call FUNC(MoveDown);
-1 call FUNC(MoveDown);
1 call FUNC(moveDown);
-1 call FUNC(moveDown);
*/
#include "script_component.hpp"

View File

@ -26,7 +26,7 @@ _actions = [localize "STR_ACE_Interaction_InteractionMenu", localize "STR_ACE_In
[_x] call EFUNC(common,getName),
QUOTE(PATHTOF(UI\dot_ca.paa)),
_forEachIndex
] call FUNC(AddSelectableItem);
] call FUNC(addSelectableItem);
};
} forEach _cargo;

View File

@ -9,7 +9,7 @@
1: TEXT - Approve button text
Returns:
ARRAY/NUMBER - container object for use with AddSelectableItem.
ARRAY/NUMBER - container object for use with addSelectableItem.
Example:
["Select Explosive", "Place"] call FUNC(prepareSelectMenu);