awesome/lib/wibox/layout/margin.lua
Kevin Zander 7687275607 Move awful.util.deprecate and awful.util.deprecate_class to gears.debug
Change all awful.util function calls to gears.debug function calls
Update all old deprecate calls to have deprecated_in=4
2017-03-15 20:08:22 -05:00

17 lines
555 B
Lua

---------------------------------------------------------------------------
-- This class has been moved to `wibox.container.margin`
--
-- @author Uli Schlachter
-- @copyright 2010 Uli Schlachter
-- @classmod wibox.layout.margin
---------------------------------------------------------------------------
local gdebug = require("gears.debug")
return gdebug.deprecate_class(
require("wibox.container.margin"),
"wibox.layout.margin",
"wibox.container.margin"
)
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80