luaclass: remove useless property name

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-08-20 16:46:33 +02:00
parent 946231ce74
commit 6cfaafbab3
3 changed files with 3 additions and 7 deletions

View File

@ -26,8 +26,6 @@ struct lua_class_property
{
/** ID matching the property */
awesome_token_t id;
/** Name of the property */
const char *name;
/** Callback function called when the property is found in object creation. */
lua_class_propfunc_t new;
/** Callback function called when the property is found in object __index. */
@ -111,7 +109,6 @@ BARRAY_FUNCS(lua_class_property_t, lua_class_property, DO_NOTHING, lua_class_pro
void
luaA_class_add_property(lua_class_t *lua_class,
awesome_token_t token,
const char *name,
lua_class_propfunc_t cb_new,
lua_class_propfunc_t cb_index,
lua_class_propfunc_t cb_newindex)
@ -119,7 +116,6 @@ luaA_class_add_property(lua_class_t *lua_class,
lua_class_property_array_insert(&lua_class->properties, (lua_class_property_t)
{
.id = token,
.name = name,
.new = cb_new,
.index = cb_index,
.newindex = cb_newindex

View File

@ -66,7 +66,7 @@ void luaA_openlib(lua_State *, const char *, const struct luaL_reg[], const stru
void luaA_class_setup(lua_State *, lua_class_t *, const char *, lua_class_allocator_t,
const struct luaL_reg[], const struct luaL_reg[]);
void luaA_class_add_property(lua_class_t *, awesome_token_t, const char *,
void luaA_class_add_property(lua_class_t *, awesome_token_t,
lua_class_propfunc_t, lua_class_propfunc_t, lua_class_propfunc_t);
int luaA_usemetatable(lua_State *, int, int);

View File

@ -123,11 +123,11 @@ timer_class_setup(lua_State *L)
luaA_class_setup(L, &timer_class, "timer", (lua_class_allocator_t) timer_new,
timer_methods, timer_meta);
luaA_class_add_property(&timer_class, A_TK_TIMEOUT, "timeout",
luaA_class_add_property(&timer_class, A_TK_TIMEOUT,
(lua_class_propfunc_t) luaA_timer_set_timeout,
(lua_class_propfunc_t) luaA_timer_get_timeout,
(lua_class_propfunc_t) luaA_timer_set_timeout);
luaA_class_add_property(&timer_class, A_TK_STARTED, "started",
luaA_class_add_property(&timer_class, A_TK_STARTED,
NULL,
(lua_class_propfunc_t) luaA_timer_get_started,
NULL);