diff options
author | Pixel <pixel@nobis-crew.org> | 2009-02-12 10:34:34 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-02-12 10:34:34 -0800 |
commit | e5183bb68d23dae659e79566624bb7d095e0df33 (patch) | |
tree | 1c4509a23384a4f14c473d1e490d11b169e0f5d7 | |
parent | 55cd641affc6d948c30aee1da3436f0b5d25a9f9 (diff) |
Indentation fix...
-rw-r--r-- | lib/LuaXML.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/LuaXML.cc b/lib/LuaXML.cc index 62cb57e..a8dfbc0 100644 --- a/lib/LuaXML.cc +++ b/lib/LuaXML.cc @@ -103,10 +103,10 @@ static int ParseHandle(lua_State *__L) { Lua * L = Lua::find(__L); Handle * h = (Handle *) LuaObject::getme(L, 1); TiXmlDocument doc; - Buffer b(true); + Buffer b(true); - b.copyfrom(h); - doc.Parse(reinterpret_cast<const char *>(b.GetBuffer())); + b.copyfrom(h); + doc.Parse(reinterpret_cast<const char *>(b.GetBuffer())); lua_newtable(__L); ParseNode(__L, &doc); |