Skip to content

Commit

Permalink
Changed xrange function name
Browse files Browse the repository at this point in the history
  • Loading branch information
morsisko committed Oct 25, 2020
1 parent 4b4ddf9 commit 4b17100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xSelectBlock/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ PLUG_EXPORT void CBMENUENTRY(CBTYPE cbType, PLUG_CB_MENUENTRY* info)
}
}

static bool cbXrang(int argc, char* argv[])
static bool cbXrange(int argc, char* argv[])
{
if (argc < 3)
return false;
Expand Down Expand Up @@ -78,7 +78,7 @@ static bool cbXext(int argc, char* argv[])
//Initialize your plugin data here.
bool pluginInit(PLUG_INITSTRUCT* initStruct)
{
if (!_plugin_registercommand(pluginHandle, "xrange", cbXrang, false))
if (!_plugin_registercommand(pluginHandle, "xrange", cbXrange, false))
_plugin_logputs("[" PLUGIN_NAME "] Error registering the 'xrange' command!");
if (!_plugin_registercommand(pluginHandle, "xset", cbXset, false))
_plugin_logputs("[" PLUGIN_NAME "] Error registering the 'xset' command!");
Expand Down

0 comments on commit 4b17100

Please sign in to comment.