Skip to content

Commit

Permalink
Fix indenting.
Browse files Browse the repository at this point in the history
  • Loading branch information
eewallace committed Jan 19, 2016
1 parent d1fc1e6 commit f1bd21e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/TLuaInterpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11911,10 +11911,10 @@ bool TLuaInterpreter::callEventHandler(const QString & function, const TEvent &
{
lua_pushnumber( L, pE.mArgumentList[i].toDouble() );
}
else if( pE.mArgumentTypeList[i] == ARGUMENT_TYPE_BOOLEAN )
{
lua_pushboolean( L, pE.mArgumentList[i].toInt() );
}
else if( pE.mArgumentTypeList[i] == ARGUMENT_TYPE_BOOLEAN )
{
lua_pushboolean( L, pE.mArgumentList[i].toInt() );
}
else
{
lua_pushstring( L, pE.mArgumentList[i].toLatin1().data() );
Expand Down

0 comments on commit f1bd21e

Please sign in to comment.