2013-01-05 16:12:52 +01:00
|
|
|
---------------------------------------------------------------------------
|
2016-05-23 05:56:45 +02:00
|
|
|
-- This class has been moved to `wibox.container.`
|
|
|
|
--
|
2013-01-05 16:12:52 +01:00
|
|
|
-- @author Lukáš Hrázký
|
|
|
|
-- @copyright 2012 Lukáš Hrázký
|
2015-02-25 11:18:53 +01:00
|
|
|
-- @classmod wibox.layout.constraint
|
2013-01-05 16:12:52 +01:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2017-03-15 06:08:40 +01:00
|
|
|
local gdebug = require("gears.debug")
|
2013-01-05 16:12:52 +01:00
|
|
|
|
2017-03-15 06:08:40 +01:00
|
|
|
return gdebug.deprecate_class(
|
2016-05-23 05:56:45 +02:00
|
|
|
require("wibox.container.constraint"),
|
|
|
|
"wibox.layout.constraint",
|
|
|
|
"wibox.container.constraint"
|
|
|
|
)
|
2013-01-05 16:12:52 +01:00
|
|
|
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|