From 436206288da2ec97dc54c30b14a3b022e52e205a Mon Sep 17 00:00:00 2001 From: Ding Li Date: Wed, 11 Apr 2018 22:12:26 +0800 Subject: [PATCH] Use HashSet instead of invalid Set for ActionMarker --- UI/ActionMarker.mqh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/ActionMarker.mqh b/UI/ActionMarker.mqh index 563c2cd..86307e2 100644 --- a/UI/ActionMarker.mqh +++ b/UI/ActionMarker.mqh @@ -5,7 +5,7 @@ #property strict #include "Mouse.mqh" -#include "../Collection/Set.mqh" +#include "../Collection/HashSet.mqh" //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ @@ -30,7 +30,7 @@ protected: void ensureCreated(); double calcDistance() const; - SetActionEvent; + HashSetActionEvent; public: ActionMarker(string id,string label,int x,int y,long chart=0):m_chart(chart==0?ChartID():chart),m_id(id),m_label(label),m_ox(x),m_oy(y),m_actived(false) {