From d1c6af0d70e3f1273bcf1f3fdf3c48bbd476dfe8 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 16 Jan 2024 13:53:29 -0600 Subject: [PATCH] testing to see where cpp is used --- src/cpp/presentationsqlmodel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cpp/presentationsqlmodel.cpp b/src/cpp/presentationsqlmodel.cpp index 37c9deb..080ac75 100644 --- a/src/cpp/presentationsqlmodel.cpp +++ b/src/cpp/presentationsqlmodel.cpp @@ -262,6 +262,7 @@ QModelIndex PresentationProxyModel::idx(int row) { } QVariantMap PresentationProxyModel::getPresentation(const int &row) { + qDebug() << "Getting Presentation through cpp"; auto model = qobject_cast(sourceModel()); QVariantMap presentation = model->getItem(mapToSource(index(row, 0)).row()); return presentation;