mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 04:25:35 +08:00
Ref T184 Minor simplification.
This commit is contained in:
@@ -197,12 +197,7 @@ namespace BlackGui
|
||||
|
||||
QList<const CDockWidgetInfoArea *> CInfoArea::getDockWidgetInfoAreas() const
|
||||
{
|
||||
QList<const CDockWidgetInfoArea *> constDockWidgets;
|
||||
for (const CDockWidgetInfoArea *dockWidgetInfoArea : m_dockWidgetInfoAreas)
|
||||
{
|
||||
constDockWidgets.append(dockWidgetInfoArea);
|
||||
}
|
||||
return constDockWidgets;
|
||||
return makeRange(m_dockWidgetInfoAreas);
|
||||
}
|
||||
|
||||
QList<QAction *> CInfoArea::getInfoAreaSelectActions(bool withShortcut, QWidget *parent) const
|
||||
|
||||
Reference in New Issue
Block a user