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
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2016-05-23 05:56:45 +02:00
|
|
|
local util = require("awful.util")
|
2013-01-05 16:12:52 +01:00
|
|
|
|
2016-05-23 05:56:45 +02:00
|
|
|
return util.deprecate_class(
|
|
|
|
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
|