diff options
author | Saturneric <[email protected]> | 2021-08-29 10:49:58 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-08-29 10:49:58 +0000 |
commit | daaa83549d42395161e34a40e18c3615801b1501 (patch) | |
tree | 7ae4c67a31e9eea8a7bda4719fbdac3ac2e730a9 /src/MainWindow.cpp | |
parent | Update version settings. (diff) | |
download | GpgFrontend-daaa83549d42395161e34a40e18c3615801b1501.tar.gz GpgFrontend-daaa83549d42395161e34a40e18c3615801b1501.zip |
Start to rewrite gpg core.
Diffstat (limited to 'src/MainWindow.cpp')
-rw-r--r-- | src/MainWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 73f55672..d2c306ef 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -35,7 +35,7 @@ MainWindow::MainWindow() auto waitingDialog = new WaitingDialog(tr("Loading Gnupg"), this); // Init Gnupg - auto ctx_thread = QThread::create([&]() { mCtx = new GpgME::GpgContext(); }); + auto ctx_thread = QThread::create([&]() { mCtx = new GpgFrontend::GpgContext(); }); ctx_thread->start(); while (ctx_thread->isRunning()) QApplication::processEvents(); |