add qDebug()
This commit is contained in:
parent
8af5f06727
commit
b79f4c88bc
|
|
@ -309,9 +309,9 @@ Q_OUTOFLINE_TEMPLATE RowList<T> Query<T>::toList(int count)
|
||||||
qPrintable(data.table->name()));
|
qPrintable(data.table->name()));
|
||||||
shp = QSharedPointer<Table>(table);
|
shp = QSharedPointer<Table>(table);
|
||||||
}
|
}
|
||||||
|
const char *className = table->metaObject()->className();
|
||||||
connect(table, &QObject::destroyed, [](QObject *){
|
connect(table, &QObject::destroyed, [className](QObject *){
|
||||||
qDebug() << "Destroyed";
|
qDebug() << "Destroyed " << className;
|
||||||
});
|
});
|
||||||
|
|
||||||
QList<FieldModel*> childFields = data.table->fields();
|
QList<FieldModel*> childFields = data.table->fields();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue