1---------------------------------------------------------------------------
2-- This class has been moved to `wibox.container.scroll`
3--
4-- @author Uli Schlachter (based on ideas from Saleur Geoffrey)
5-- @copyright 2015 Uli Schlachter
6-- @classmod wibox.layout.scroll
7---------------------------------------------------------------------------
8local gdebug = require("gears.debug")
9
10return gdebug.deprecate_class(
11    require("wibox.container.scroll"),
12    "wibox.layout.scroll",
13    "wibox.container.scroll"
14)
15
16-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
17