Skip to content

Commit

Permalink
Changed function names
Browse files Browse the repository at this point in the history
  • Loading branch information
niquedegraaff committed Apr 12, 2016
1 parent b3935b1 commit 4bbcbb8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Snippets/Templates/expertstart.sublime-snippet
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ extern int ${5:ExtParam2=0};
//+------------------------------------------------------------------+
//| expert initialization function |
//+------------------------------------------------------------------+
int init()
int OnInit()
{
//----
${6}
Expand All @@ -25,7 +25,7 @@ int init()
//+------------------------------------------------------------------+
//| expert deinitialization function |
//+------------------------------------------------------------------+
int deinit()
int OnDeinit()
{
//----
${7}
Expand All @@ -35,7 +35,7 @@ int deinit()
//+------------------------------------------------------------------+
//| expert start function |
//+------------------------------------------------------------------+
int start()
int OnStart()
{
//----
${0}
Expand All @@ -47,5 +47,5 @@ int start()
<tabTrigger>expertstart</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.mq4</scope>
<description>init(),deinit(),start()</description>
<description>OnInit(),OnDeinit(),OnStart()</description>
</snippet>

0 comments on commit 4bbcbb8

Please sign in to comment.