Changed main layout

This commit is contained in:
2025-12-31 13:38:46 +01:00
parent b6764e7a12
commit c7a246e56d
9 changed files with 69 additions and 52 deletions

View File

@@ -44,14 +44,6 @@ BCValueModel::BCValueModel(QObject *parent)
}
/**
* @brief Setzt den Headerlabel ( == die Devicebezeichnung )
* @param headerLabel
*/
void BCValueModel::setHeaderLabel( const QString& headerLabel )
{
_headerLabel = headerLabel;
}
/**
* @brief Einen Einzelwert hinzufügen
@@ -147,17 +139,6 @@ int BCValueModel::columnCount(const QModelIndex& parent) const
}
/**
* @brief Gibt die Header-Einträge zurück
*/
QVariant BCValueModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (role != Qt::DisplayRole || orientation != Qt::Horizontal || section != 0)
return QVariant();
return _headerLabel;
}
/**