From c9311efd5b397bad2b8ebbd654b6755d2cbec1c4 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Thu, 26 Jun 2008 17:13:02 +0200 Subject: [PATCH] widgets: s/lstack/luastack/ Signed-off-by: Julien Danjou --- widgets/graph.c | 6 +++--- widgets/progressbar.c | 6 +++--- widgets/taglist.c | 4 ++-- widgets/tasklist.c | 4 ++-- widgets/textbox.c | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/widgets/graph.c b/widgets/graph.c index 13b612295..527173c2d 100644 --- a/widgets/graph.c +++ b/widgets/graph.c @@ -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. diff --git a/widgets/progressbar.c b/widgets/progressbar.c index a907623b6..e4eaa5d51 100644 --- a/widgets/progressbar.c +++ b/widgets/progressbar.c @@ -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. diff --git a/widgets/taglist.c b/widgets/taglist.c index 7ae3a6fa8..0b7ce29a4 100644 --- a/widgets/taglist.c +++ b/widgets/taglist.c @@ -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. */ diff --git a/widgets/tasklist.c b/widgets/tasklist.c index a225e9b12..a31373c6c 100644 --- a/widgets/tasklist.c +++ b/widgets/tasklist.c @@ -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'. */ diff --git a/widgets/textbox.c b/widgets/textbox.c index 470864541..9b0a6c0d6 100644 --- a/widgets/textbox.c +++ b/widgets/textbox.c @@ -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. */