2010-10-06 12:42:56 +02:00
|
|
|
---------------------------------------------------------------------------
|
2021-12-21 06:54:15 +01:00
|
|
|
-- This class has been moved to `wibox.container.background`.
|
2016-05-23 05:56:45 +02:00
|
|
|
--
|
2010-10-06 12:42:56 +02:00
|
|
|
-- @author Uli Schlachter
|
|
|
|
-- @copyright 2010 Uli Schlachter
|
2015-02-25 11:18:53 +01:00
|
|
|
-- @classmod wibox.widget.background
|
2010-10-06 12:42:56 +02:00
|
|
|
---------------------------------------------------------------------------
|
2017-03-15 06:08:40 +01:00
|
|
|
local gdebug = require("gears.debug")
|
2010-10-06 12:42:56 +02:00
|
|
|
|
2017-03-15 06:08:40 +01:00
|
|
|
return gdebug.deprecate_class(
|
2016-05-23 05:56:45 +02:00
|
|
|
require("wibox.container.background"),
|
|
|
|
"wibox.widget.background",
|
|
|
|
"wibox.container.background"
|
|
|
|
)
|
2010-10-06 12:42:56 +02:00
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|