QSqlQueryModel: copy ctor explicitly deleted
-
(Qt 6.6.0)
Why, oh, why is the copy constructor of QSqlQueryModel (and that of QAbstractTableModel) explicitly deleted...?
Any insight would be greatly appreciated.Thanks,
Roy -
(Qt 6.6.0)
Why, oh, why is the copy constructor of QSqlQueryModel (and that of QAbstractTableModel) explicitly deleted...?
Any insight would be greatly appreciated.Thanks,
Roy@TheFlyingMooseMan Because an QObject can not be copied by design. See also https://doc.qt.io/qt-6/objecttrees.html
Why do you want to copy the model?