Add BasicUI::locations()

Towards removing the direct use of Session by surfaces.
This commit is contained in:
David Robillard 2021-06-15 22:20:59 -04:00
parent fdc24b6594
commit 3e101dd895
11 changed files with 34 additions and 16 deletions

View file

@ -852,3 +852,15 @@ BasicUI::master_out () const
{
return _session->master_out ();
}
const Locations*
BasicUI::locations () const
{
return _session->locations ();
}
Locations*
BasicUI::locations ()
{
return _session->locations ();
}