diff options
author | Saturneric <[email protected]> | 2021-08-20 14:50:57 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-08-20 14:50:57 +0000 |
commit | 05bccf40df525c8b3753750a34ff4b75e96d2f6e (patch) | |
tree | 13ed87d2a9478a63b6f7c073955c1c1423a8ebb1 /src | |
parent | Improve Functions; (diff) | |
download | GpgFrontend-05bccf40df525c8b3753750a34ff4b75e96d2f6e.tar.gz GpgFrontend-05bccf40df525c8b3753750a34ff4b75e96d2f6e.zip |
Fixed.
Diffstat (limited to '')
-rw-r--r-- | src/ui/main_window/MainWindowServerSlotFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/main_window/MainWindowServerSlotFunction.cpp b/src/ui/main_window/MainWindowServerSlotFunction.cpp index c2300818..011cfd28 100644 --- a/src/ui/main_window/MainWindowServerSlotFunction.cpp +++ b/src/ui/main_window/MainWindowServerSlotFunction.cpp @@ -86,7 +86,7 @@ QString MainWindow::getCryptText(const QString &shortenCryptoText) { QByteArray postData(sb.GetString()); qDebug() << "postData" << QString::fromUtf8(postData); - QNetworkReply *reply = utils->getNetworkManager()->post(request, postData); + QNetworkReply *reply = utils->getNetworkManager().post(request, postData); auto dialog = new WaitingDialog(tr("Getting Cpt From Server"), this); dialog->show(); |