@@ -450,7 +450,7 @@ QVariant DirectCompositeColumn::computeValueAt(BufferRowIndex rowIndex) const
450
450
*
451
451
* @return A set of all base table columns which are used to compute contents of this column.
452
452
*/
453
- const QSet<Column* const > DirectCompositeColumn::getAllUnderlyingColumns () const
453
+ const QSet<Column*> DirectCompositeColumn::getAllUnderlyingColumns () const
454
454
{
455
455
return { contentColumn };
456
456
}
@@ -505,9 +505,9 @@ QVariant ReferenceCompositeColumn::computeValueAt(BufferRowIndex rowIndex) const
505
505
*
506
506
* @return A set of all base table columns which are used to compute contents of this column.
507
507
*/
508
- const QSet<Column* const > ReferenceCompositeColumn::getAllUnderlyingColumns () const
508
+ const QSet<Column*> ReferenceCompositeColumn::getAllUnderlyingColumns () const
509
509
{
510
- QSet<Column* const > result = { contentColumn };
510
+ QSet<Column*> result = { contentColumn };
511
511
result.unite (breadcrumbs.getColumnSet ());
512
512
return result;
513
513
}
@@ -582,7 +582,7 @@ QVariant DifferenceCompositeColumn::computeValueAt(BufferRowIndex rowIndex) cons
582
582
*
583
583
* @return A set of all base table columns which are used to compute contents of this column.
584
584
*/
585
- const QSet<Column* const > DifferenceCompositeColumn::getAllUnderlyingColumns () const
585
+ const QSet<Column*> DifferenceCompositeColumn::getAllUnderlyingColumns () const
586
586
{
587
587
return { minuendColumn, subtrahendColumn };
588
588
}
@@ -643,7 +643,7 @@ QVariant DependentEnumCompositeColumn::computeValueAt(BufferRowIndex rowIndex) c
643
643
*
644
644
* @return A set of all base table columns which are used to compute contents of this column.
645
645
*/
646
- const QSet<Column* const > DependentEnumCompositeColumn::getAllUnderlyingColumns () const
646
+ const QSet<Column*> DependentEnumCompositeColumn::getAllUnderlyingColumns () const
647
647
{
648
648
return { discerningEnumColumn, displayedEnumColumn };
649
649
}
@@ -742,9 +742,9 @@ QList<BufferRowIndex> IndexCompositeColumn::getRowIndexOrderList() const
742
742
*
743
743
* @return A set of all base table columns which are used to compute contents of this column.
744
744
*/
745
- const QSet<Column* const > IndexCompositeColumn::getAllUnderlyingColumns () const
745
+ const QSet<Column*> IndexCompositeColumn::getAllUnderlyingColumns () const
746
746
{
747
- QSet<Column* const > columns = QSet<Column* const >();
747
+ QSet<Column*> columns = QSet<Column*>();
748
748
for (const auto & [column, order] : sortingPasses) {
749
749
columns += column;
750
750
}
0 commit comments