Removed debug code.

This commit is contained in:
2026-01-09 08:39:53 +01:00
parent 53b4d6e041
commit 1fc551d7d1
4 changed files with 20 additions and 111 deletions

View File

@@ -50,13 +50,12 @@ BCDeviceView::BCDeviceView(QWidget *parent)
// Signal für Änderungen
connect(&_valueModel, &BCValueModel::dataChanged, this, [](const QModelIndex& topLeft, const QModelIndex& bottomRight)
{
if (topLeft.column() ==1) {
int row = topLeft.row();
int value = topLeft.data(Qt::DisplayRole).toInt();
qDebug() << "äääZeile" << row << "wurde auf" << value << "gesetzt";
}
});
{
if (topLeft.column() ==1) {
int row = topLeft.row();
int value = topLeft.data(Qt::DisplayRole).toInt();
}
});
}