add signal prototypes

This commit is contained in:
Christoph Holzheuer
2025-09-02 16:58:56 +02:00
parent 147769bf60
commit 3e7b65dca5
10 changed files with 118 additions and 42 deletions

View File

@@ -79,17 +79,6 @@ using namespace Qt::Literals::StringLiterals;
int main(int argc, char *argv[])
{
/*
// Signal für einzelne QStandardItem-Änderungen
connect(model, &QStandardItemModel::itemChanged,
this, [](QStandardItem *changedItem){
QVariant state = changedItem->data(Qt::CheckStateRole);
qDebug() << "Neuer Check-State:" << state.toInt();
});
*/
QApplication app(argc, argv);
//app.setStyle("fusion");
XQMainWindow window;