widgets: s/lstack/luastack/
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
b1c48b6834
commit
c9311efd5b
|
@ -280,7 +280,7 @@ graph_draw(draw_context_t *ctx,
|
|||
/** Set various graph general properties.
|
||||
* \param L The Lua VM state.
|
||||
* \return The number of elements pushed on stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam A table with various properties set.
|
||||
*/
|
||||
|
@ -340,7 +340,7 @@ luaA_graph_properties_set(lua_State *L)
|
|||
/** Set various plot graph properties.
|
||||
* \param L The Lua VM state.
|
||||
* \return The number of elements pushed on stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam A plot name.
|
||||
* \lparam A table with various properties set.
|
||||
|
@ -403,7 +403,7 @@ luaA_graph_plot_properties_set(lua_State *L)
|
|||
/** Add data to a plot.
|
||||
* \param l The Lua VM state.
|
||||
* \return The number of elements pushed on stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam A plot name.
|
||||
* \lparam A data value.
|
||||
|
|
|
@ -421,7 +421,7 @@ progressbar_draw(draw_context_t *ctx,
|
|||
* vertical.
|
||||
* \param L The Lua VM state.
|
||||
* \return The number of elements pushed on the stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam A table with keys as properties names.
|
||||
*/
|
||||
|
@ -451,7 +451,7 @@ luaA_progressbar_properties_set(lua_State *L)
|
|||
/** Set various progressbar bars properties:
|
||||
* \param L The Lua VM state.
|
||||
* \return The number of elements pushed on the stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam A bar name.
|
||||
* \lparam A table with keys as properties names.
|
||||
|
@ -513,7 +513,7 @@ luaA_progressbar_bar_properties_set(lua_State *L)
|
|||
/** Add a value to a progressbar bar.
|
||||
* \param L The Lua VM state.
|
||||
* \return The number of elements pushed on the stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam A bar name.
|
||||
* \lparam A data value.
|
||||
|
|
|
@ -295,7 +295,7 @@ taglist_button_press(widget_node_t *w,
|
|||
* or has a client with urgency hint.
|
||||
* \param L The Lua VM state.
|
||||
* \return The number of elements pushed on stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam A table with keys to change: `normal', `focus' and `urgent'.
|
||||
*/
|
||||
|
@ -334,7 +334,7 @@ luaA_taglist_text_set(lua_State *L)
|
|||
/** Set if the taglist must show the tags which have no client.
|
||||
* \param L The Lua VM state.
|
||||
* \return The number of elements pushed on stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam A boolean value, true to show empty tags, false otherwise.
|
||||
*/
|
||||
|
|
|
@ -280,7 +280,7 @@ tasklist_button_press(widget_node_t *w,
|
|||
/** Set the tasklist show attribute.
|
||||
* \param L The Lua VM state.
|
||||
* \return The number of elements pushed on stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam A string: tags, focus or all.
|
||||
*/
|
||||
|
@ -334,7 +334,7 @@ luaA_tasklist_showicons_set(lua_State *L)
|
|||
* urgency hint.
|
||||
* \param L The Lua VM state.
|
||||
* \return The number of elements pushed on stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam A table with keys to change: `normal', `focus' and `urgent'.
|
||||
*/
|
||||
|
|
|
@ -100,7 +100,7 @@ textbox_destructor(widget_t *w)
|
|||
/** Set the text of a textbox.
|
||||
* \param L The Lua VM state.
|
||||
* \return The number of elements pushed on stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam The text to set.
|
||||
*/
|
||||
|
@ -122,7 +122,7 @@ luaA_textbox_text_set(lua_State *L)
|
|||
/** Set the width of a textbox.
|
||||
* \param L The Lua VM state.
|
||||
* \return The number of elements pushed on stack.
|
||||
* \lstack
|
||||
* \luastack
|
||||
* \lvalue A widget.
|
||||
* \lparam The width to set.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue