refactor: Renames member _splitAreas to _cross.

mod: removes ContainerWiget::set/Orientation() members. Obsolete since
everything is managed over drop areas.
This commit is contained in:
mfreiholz
2016-04-18 07:18:50 +02:00
parent 86c23c6269
commit 9c530dcc58
5 changed files with 17 additions and 34 deletions

View File

@@ -67,20 +67,6 @@ ContainerWidget::~ContainerWidget()
_swLookupMapById.clear();
}
Qt::Orientation ContainerWidget::orientation() const
{
return _orientation;
}
void ContainerWidget::setOrientation(Qt::Orientation orientation)
{
if (_orientation != orientation)
{
_orientation = orientation;
emit orientationChanged();
}
}
SectionWidget* ContainerWidget::addSectionContent(const SectionContent::RefPtr& sc, SectionWidget* sw, DropArea area)
{
if (!sw)