2012-05-15 00:39:54 +02:00
|
|
|
---------------------------------------------------------------------------
|
2016-05-23 05:56:45 +02:00
|
|
|
-- This class has been moved to `wibox.container.mirror`
|
|
|
|
--
|
2012-05-15 00:39:54 +02:00
|
|
|
-- @author dodo
|
|
|
|
-- @copyright 2012 dodo
|
2015-02-25 11:18:53 +01:00
|
|
|
-- @classmod wibox.layout.mirror
|
2012-05-15 00:39:54 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2017-03-15 06:08:40 +01:00
|
|
|
local gdebug = require("gears.debug")
|
2012-05-15 00:39:54 +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.mirror"),
|
|
|
|
"wibox.layout.mirror",
|
|
|
|
"wibox.container.mirror"
|
|
|
|
)
|
2012-05-15 00:39:54 +02:00
|
|
|
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|