Cleanups.

This commit is contained in:
2026-01-06 15:59:57 +01:00
parent 6c15d99119
commit 1a2d815634
20 changed files with 73 additions and 295 deletions

View File

@@ -85,7 +85,7 @@ void BCValueModel::onValueUpdated( int row, BCValue::State state, const QString&
{
if( row > -1 && row < _valueList.size() )
{
BCValue& value = *(_valueList[row].get());
const BCValue& value = *(_valueList[row].get());
QModelIndex idx = index(row,1);
//qDebug();
@@ -132,7 +132,7 @@ int BCValueModel::columnCount(const QModelIndex& parent) const
{
if (parent.isValid())
return 0;
return 2;
return 3;
}