diff options
author | pixel <pixel> | 2007-05-30 06:36:02 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-05-30 06:36:02 +0000 |
commit | 894c6aa0dd25631eed977da67e99f934be14611d (patch) | |
tree | 8e9a72d04d28612900520397f4bc86dab1836ec6 /include | |
parent | 6c16139384a26103a37cbdd82138440177eebf0e (diff) |
Swapping argument order.
Diffstat (limited to 'include')
-rw-r--r-- | include/BLua.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/BLua.h b/include/BLua.h index dad6064..32f4bef 100644 --- a/include/BLua.h +++ b/include/BLua.h @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: BLua.h,v 1.34 2007-05-30 06:28:46 pixel Exp $ */ +/* $Id: BLua.h,v 1.35 2007-05-30 06:36:02 pixel Exp $ */ #ifndef __BLUA_H__ #define __BLUA_H__ @@ -151,7 +151,7 @@ class LuaObject : public Base { void pushdestruct(Lua *) throw (GeneralException); protected: virtual void pushmembers(Lua *) = 0; - void pushme(Lua *, void *, bool = true, const String & = ""); + void pushme(Lua *, void * = 0, const String & = "", bool = true); static void pushit(Lua *, const String &, lua_CFunction); static void pushmeta(Lua *, const String &, lua_CFunction); bool wantdestruct, pushed; |