From e3d078234469096aa5cc0bdcb5d0cbd2323c5248 Mon Sep 17 00:00:00 2001 From: Bent Witthold Date: Mon, 4 May 2026 08:17:40 +0200 Subject: [PATCH] GenericCore::postItemToServer(...) -> GenericCore::sendItemToServer(...) --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 514c98c..a9557fa 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -304,7 +304,7 @@ void MainWindow::postItems() { showStatusMessage(tr("Invoked 'Server|Post items'")); const QModelIndex currentIndex = ui->tableView->currentIndex(); const QByteArray jsonData = m_proxyModel->jsonDataForServer(currentIndex); - emit m_core->postItemToServer(jsonData); + emit m_core->sendItemToServer(jsonData); } void MainWindow::deleteItem() {