Formatting, new icons

This commit is contained in:
Klaus Basan
2014-09-16 13:40:08 +02:00
parent b989dec74d
commit 5d6713032f
16 changed files with 72 additions and 29 deletions

View File

@@ -132,7 +132,7 @@ namespace BlackGui
}
}
int CInfoArea::getSelectedInfoAreaIndex() const
int CInfoArea::getSelectedTabBarIndex() const
{
Q_ASSERT(this->m_tabBar);
if (!this->m_tabBar || this->m_tabBar->count() < 1) return -1;
@@ -347,7 +347,7 @@ namespace BlackGui
return this->m_tabBar->count();
}
CDockWidgetInfoArea *CInfoArea::getDockableWidgetByTabIndex(int tabBarIndex) const
CDockWidgetInfoArea *CInfoArea::getDockableWidgetByTabBarIndex(int tabBarIndex) const
{
if (tabBarIndex >= this->m_dockableWidgets.count() || tabBarIndex < 0) return nullptr;
for (CDockWidgetInfoArea *dw : this->m_dockableWidgets)