awful.tag.inc*: properly pass tag parameter to set*

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Axel Beckert 2012-01-10 22:05:04 +01:00 committed by Julien Danjou
parent ba7f7c4488
commit 4d69dba412
1 changed files with 3 additions and 3 deletions

View File

@ -260,7 +260,7 @@ end
--- Increase master width factor. --- Increase master width factor.
-- @param add Value to add to master width factor. -- @param add Value to add to master width factor.
function incmwfact(add, t) function incmwfact(add, t)
setmwfact(getmwfact(t) + add) setmwfact(getmwfact(t) + add, t)
end end
--- Get master width factor. --- Get master width factor.
@ -290,7 +290,7 @@ end
--- Increase the number of master windows. --- Increase the number of master windows.
-- @param add Value to add to number of master windows. -- @param add Value to add to number of master windows.
function incnmaster(add, t) function incnmaster(add, t)
setnmaster(getnmaster(t) + add) setnmaster(getnmaster(t) + add, t)
end end
@ -328,7 +328,7 @@ end
--- Increase number of column windows. --- Increase number of column windows.
-- @param add Value to add to number of column windows. -- @param add Value to add to number of column windows.
function incncol(add, t) function incncol(add, t)
setncol(getncol(t) + add) setncol(getncol(t) + add, t)
end end
--- View no tag. --- View no tag.