Skip to content

Commit

Permalink
Renames SymbolInfo.static.h to SymbolInfo.struct.static.h
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Nov 7, 2021
1 parent b4c880a commit 398c4fa
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Convert.mqh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "Array.mqh"
#include "Order.enum.h"
#include "SymbolInfo.enum.h"
#include "SymbolInfo.static.h"
#include "SymbolInfo.struct.static.h"

/**
* Class to provide conversion methods.
Expand Down
2 changes: 1 addition & 1 deletion Order.struct.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include "Data.struct.h"
#include "Order.enum.h"
#include "Serializer.mqh"
#include "SymbolInfo.static.h"
#include "SymbolInfo.struct.static.h"
#include "Terminal.mqh"

#ifndef __MQL5__
Expand Down
2 changes: 1 addition & 1 deletion SymbolInfo.mqh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class SymbolInfo;
#include "SymbolInfo.define.h"
#include "SymbolInfo.enum.h"
#include "SymbolInfo.enum.symbols.h"
#include "SymbolInfo.static.h"
#include "SymbolInfo.struct.h"
#include "SymbolInfo.struct.static.h"

// Includes.
#include "Log.mqh"
Expand Down
2 changes: 1 addition & 1 deletion SymbolInfo.struct.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// Includes.
#include "ISerializable.h"
#include "MqlTick.h"
#include "SymbolInfo.static.h"
#include "SymbolInfo.struct.static.h"

// Defines struct to store symbol data.
struct SymbolInfoEntry
Expand Down
4 changes: 2 additions & 2 deletions SymbolInfo.static.h → SymbolInfo.struct.static.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
#include "Std.h"

/**
* Class to provide symbol information.
* Struct to provide symbol information.
*/
class SymbolInfoStatic {
struct SymbolInfoStatic {
public:
/**
* Get the current symbol pair from the current chart.
Expand Down

0 comments on commit 398c4fa

Please sign in to comment.