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
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2016-05-23 05:56:45 +02:00
|
|
|
local util = require("awful.util")
|
2012-05-15 00:39:54 +02:00
|
|
|
|
2016-05-23 05:56:45 +02:00
|
|
|
return util.deprecate_class(
|
|
|
|
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
|