Added smiles.

This commit is contained in:
2026-01-10 16:38:52 +01:00
parent cb553cf928
commit aa4b2a1b84
27 changed files with 302 additions and 21 deletions

View File

@@ -190,6 +190,12 @@ bool BCValueModel::setData(const QModelIndex& index, const QVariant& variant, in
// Checken ob Int oder Double
if (variant.canConvert<int>())
{
qDebug() << "--- new VALUE: " << variant.toInt();
if( variant.toInt() == 42)
{
qDebug() << "--- YES! " << variant.toInt();
emit makeSimonHappy();
}
value->rawValue = variant.toInt();
}