diff options
author | Saturneric <[email protected]> | 2021-08-11 07:05:35 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-08-11 07:05:35 +0000 |
commit | 67778c92257fac129f02b1def0f384a9fb9b910e (patch) | |
tree | 0eec1d2c05949745cf700ac89741794f5488d492 /src/ui/main_window/MainWindowServerSlotFunction.cpp | |
parent | Merge remote-tracking branch 'origin/develop' into develop (diff) | |
download | GpgFrontend-67778c92257fac129f02b1def0f384a9fb9b910e.tar.gz GpgFrontend-67778c92257fac129f02b1def0f384a9fb9b910e.zip |
Fix Compile Issue
Diffstat (limited to 'src/ui/main_window/MainWindowServerSlotFunction.cpp')
-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 fec60063..12f1453b 100644 --- a/src/ui/main_window/MainWindowServerSlotFunction.cpp +++ b/src/ui/main_window/MainWindowServerSlotFunction.cpp @@ -59,7 +59,7 @@ QString MainWindow::getCryptText(const QString &shortenCryptoText) { request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json"); // Sign Shorten Text - QVector keys{key}; + QVector<GpgKey> keys{key}; QByteArray outSignText; mCtx->sign(keys, shortenCryptoText.toUtf8(), &outSignText, GPGME_SIG_MODE_NORMAL); auto outSignTextBase64 = outSignText.toBase64(); |