Issue #93: Fixed typo Cction (Action) in MtApi5.mq5

This commit is contained in:
vdemydiuk
2018-03-02 13:22:40 +02:00
parent 7f33cebce1
commit d7b8ef894c
2 changed files with 1 additions and 1 deletions
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -6272,7 +6272,7 @@ JSONObject* MqlTradeTransactionToJson(MqlTradeTransaction& trans)
JSONObject* MqlTradeRequestToJson(MqlTradeRequest& request)
{
JSONObject *jo = new JSONObject();
jo.put("Cction", new JSONNumber((int)request.action));
jo.put("Action", new JSONNumber((int)request.action));
jo.put("Magic", new JSONNumber(request.magic));
jo.put("Order", new JSONNumber(request.order));
jo.put("Symbol", new JSONString(request.symbol));