mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
7687275607
Change all awful.util function calls to gears.debug function calls Update all old deprecate calls to have deprecated_in=4
17 lines
555 B
Lua
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
|