A bit of work on app's UI and integration between .net and native.

This commit is contained in:
2014-07-23 13:47:09 +03:00
parent 731475f8c8
commit 8541cce5f4
76 changed files with 5412 additions and 407 deletions

View File

@ -38,7 +38,7 @@ static int Bang(lua_State* L)
if (top == 2) // 1 argument
{
parser.ReplaceVariables(bang);
GetRainmeter().ExecuteCommand(bang.c_str(), self);
Rainmeter::GetInstance().ExecuteCommand(bang.c_str(), self);
}
else
{
@ -54,7 +54,7 @@ static int Bang(lua_State* L)
args.push_back(tmpSz);
}
GetRainmeter().ExecuteBang(bangSz, args, self);
Rainmeter::GetInstance().ExecuteBang(bangSz, args, self);
}
}